Actions
Evolution #58
closedthemeInclude() does not include args
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'));
Updated by Simon about 15 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