stopping permanent error_log

This commit is contained in:
Ralf Becker 2011-09-09 13:26:54 +00:00
parent 64b4ac7e68
commit b045e1f852

View File

@ -667,7 +667,7 @@ class etemplate_widget
*/
public function &getElementAttribute($name, $attr)
{
error_log(__METHOD__."('$name', '$attr')");
//error_log(__METHOD__."('$name', '$attr')");
return self::$request->modifications[$name][$attr];
}
@ -684,7 +684,7 @@ class etemplate_widget
$ref =& self::$request->modifications[$name][$attr];
if (!is_null($val)) $ref = $val;
error_log(__METHOD__."('$name', '$attr', ".array2string($val).')');
//error_log(__METHOD__."('$name', '$attr', ".array2string($val).')');
return $ref;
}