[Smarttemplate-cvscommit] smarttemplate class.smarttemplatedebugger.php, 1.6, 1.7
Brought to you by:
codeworxtech
|
From: EndelWar <end...@us...> - 2007-01-05 17:48:18
|
Update of /cvsroot/smarttemplate/smarttemplate In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv30557 Modified Files: class.smarttemplatedebugger.php Log Message: Modified $_SERVER['PATH_TRANSLATED'] with $_SERVER['PATH_TRANSLATED'] for compatibility with php 4.3.2 and apache2 (see http://www.php.net/manual/en/reserved.variables.php) Index: class.smarttemplatedebugger.php =================================================================== RCS file: /cvsroot/smarttemplate/smarttemplate/class.smarttemplatedebugger.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** class.smarttemplatedebugger.php 23 Aug 2006 19:44:22 -0000 1.6 --- class.smarttemplatedebugger.php 5 Jan 2007 17:48:14 -0000 1.7 *************** *** 300,304 **** echo '<font face="Arial" Size="3"><b>'; echo 'SmartTemplate Debugger<br>'; ! echo '<font size="2"><li>PHP-Script: ' . $_SERVER['PATH_TRANSLATED'] . '</li><li>Template: ' . $this->filename . '</li></font><hr>'; echo '<li><a href="#template_code">Template</a></li>'; echo '<li><a href="#compiled_code">Compiled Template</a></li>'; --- 300,304 ---- echo '<font face="Arial" Size="3"><b>'; echo 'SmartTemplate Debugger<br>'; ! echo '<font size="2"><li>PHP-Script: ' . $_SERVER['SCRIPT_FILENAME'] . '</li><li>Template: ' . $this->filename . '</li></font><hr>'; echo '<li><a href="#template_code">Template</a></li>'; echo '<li><a href="#compiled_code">Compiled Template</a></li>'; |