Pman.php
[Pman.Base] / Pman.php
index 94ce7f2..f01c02d 100644 (file)
--- a/Pman.php
+++ b/Pman.php
@@ -465,8 +465,8 @@ class Pman extends HTML_FlexyFramework_Page
             header('Content-type: text/html');
             echo "<HTML><HEAD></HEAD><BODY>";
             // encode html characters so they can be read..
-            $str = str_replace(array('<','>'), array('\u003c','\u003e'), $str);
-            echo  $json->encodeUnsafe(array('success'=> true, 'data' => $str));
+            echo  str_replace(array('<','>'), array('\u003c','\u003e'),
+                        $json->encodeUnsafe(array('success'=> true, 'data' => $str)));
             echo "</BODY></HTML>";
             exit;
         }