1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-17 12:01:05 +02:00

Remove debug code, redundant parameter

This commit is contained in:
e107steved
2009-12-07 20:48:04 +00:00
parent 70ea773f8f
commit 0df76288bb
2 changed files with 31 additions and 35 deletions

View File

@@ -9,9 +9,9 @@
* Text processing and parsing functions
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/e_parse_class.php,v $
* $Revision: 1.86 $
* $Date: 2009-11-19 13:46:24 $
* $Author: e107coders $
* $Revision: 1.87 $
* $Date: 2009-12-07 20:48:04 $
* $Author: e107steved $
*
*/
if (!defined('e107_INIT')) { exit(); }
@@ -1100,11 +1100,6 @@ class e_parse
switch ($matches[2])
{
case 'php' :
if (DB_INF_SHOW)
{
echo "PHP decode: ".htmlentities($matches[4])."<br /><br />";
}
// Probably run the output through the normal processing functions - but put here so the PHP code can disable if desired
$proc_funcs = TRUE;
@@ -1119,10 +1114,6 @@ class e_parse
{
$bbcode = html_entity_decode($matches[4], ENT_QUOTES, 'UTF-8');
}
if (DB_INF_SHOW)
{
echo "PHP after decode: ".htmlentities($bbcode)."<br /><br />";
}
break;
case 'html' :