Project

General

Profile

Actions

Evolution #58

closed

themeInclude() does not include args

Added by Simon over 14 years ago. Updated over 14 years ago.

Status:
Fermé
Priority:
Normal
Assignee:
Category:
public
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
fixed

Description

in user/tpl_user.php (line 70) :

$todo_mail = 'add_user';
include_once('../user/mail_actions.php');
include_once('../mail/template.php');

// echo $todo_mail  displays 'add_user'
$todo_mail = 'add_user';
themeInclude('../user/mail_actions.php');
themeInclude('../mail/template.php');

// echo $todo_mail  displays  undefined index

solutions (??) :

include_once(themePath('../user/mail_actions.php'));
Actions #1

Updated by Simon over 14 years ago

  • Status changed from Nouveau to En cours
Actions #2

Updated by Simon over 14 years ago

  • Status changed from En cours to Fermé
  • Resolution set to fixed

fixed : r1127

themeInclude('../myfolder/myfile'); does not exist anymore

Replaced by :

include_once(themePath('../user/mail_actions.php'));
Actions

Also available in: Atom PDF