Bugs item #1837766, was opened at 2007-11-24 13:10
Message generated for change (Comment added) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=937964&aid=1837766&group_id=191583
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Core
Group: SVN (please specify revision!)
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Tim Stauffer (redcircle)
Assigned to: Nobody/Anonymous (nobody)
Summary: $SESSID_USERNAME undefined error in list-virtual.tpl
Initial Comment:
Using 1.2.1SVNr239
I have error_reporting set to E_ALL and I'm getting an undefined ind
Notice: Undefined variable: SESSID_USERNAME in /usr/local/www/postfixadmin/templates/list-virtual.tpl on line 137
here's a patch to fix it. I'm not too firmilar with the inner workings of postfixadmin so it might go against your coding conventions
--- templates/list-virtual.tpl (revision 239)
+++ templates/list-virtual.tpl (working copy)
@@ -2,7 +2,7 @@
<form name="overview" method="post">
<select name="fDomain" onChange="this.form.submit();">
<?php
-
+$SESSID_USERNAME = authentication_get_username();
$file = 'list-virtual.php';
if ($limit['aliases'] == 0) $limit['aliases'] = $PALANG['pOverview_unlimited'];
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2007-11-24 16:35
Message:
Logged In: NO
fixed; thanks. See revision 240
----------------------------------------------------------------------
Comment By: Tim Stauffer (redcircle)
Date: 2007-11-24 13:14
Message:
Logged In: YES
user_id=719940
Originator: YES
I meant 2.1.1SVN r239
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=937964&aid=1837766&group_id=191583
|