Ver código fonte

tidy is a global class, so needs a global namespace specification.

Frederic G. MARAND 12 anos atrás
pai
commit
766b47b2eb
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      memcache_ui.php

+ 1 - 1
memcache_ui.php

@@ -15,7 +15,7 @@ namespace Memcache_UI {
         'sort-attributes' => 'alpha',
         'wrap'            => 200,
     );
-    $tidy = new tidy();
+    $tidy = new \tidy();
     $tidy->parseString($html, $config, 'utf8');
     $tidy->cleanRepair();
     $html = (string) $tidy;