Просмотр исходного кода

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

tokul 20 лет назад
Родитель
Сommit
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
     $buffer = ob_get_contents(); // Grab the print_r output
     ob_end_clean();  // Silently discard the output & stop buffering
     ob_end_clean();  // Silently discard the output & stop buffering
-    print '<pre>';
+    print '<div align="left"><pre>';
     print htmlentities($buffer);
     print htmlentities($buffer);
-    print '</pre>';
+    print '</pre></div>';
 }
 }
 
 
 /**
 /**