浏览代码

preformated text is harder to read, when output is centered.

tokul 20 年之前
父节点
当前提交
0fb9a2d2ea
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      functions/strings.php

+ 2 - 2
functions/strings.php

@@ -881,9 +881,9 @@ function sm_print_r() {
     }
     $buffer = ob_get_contents(); // Grab the print_r output
     ob_end_clean();  // Silently discard the output & stop buffering
-    print '<pre>';
+    print '<div align="left"><pre>';
     print htmlentities($buffer);
-    print '</pre>';
+    print '</pre></div>';
 }
 
 /**