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

Admin UI minor improvements; cleanup - warnings removal; various minor bugfixes

This commit is contained in:
secretr
2010-10-30 15:34:48 +00:00
parent 63f83d6f38
commit d9527349ad
6 changed files with 77 additions and 7 deletions

View File

@@ -609,9 +609,9 @@ class e_parse
function toForm($text)
{
if($text == '')
if(empty($text)) // fix - handle proper 0, Space etc values.
{
return '';
return $text;
}
$search = array('&#036;', '&quot;', '<', '>');
$replace = array('$', '"', '&lt;', '&gt;');