Преглед на файлове

[FrameworkBundle] fixed error message for template as an array

Fabien Potencier преди 14 години
родител
ревизия
cdff8b2bf8
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/Symfony/Bundle/FrameworkBundle/Templating/DelegatingEngine.php

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Templating/DelegatingEngine.php

@@ -69,7 +69,7 @@ class DelegatingEngine extends BaseDelegatingEngine implements EngineInterface
             }
         }
 
-        throw new \RuntimeException(sprintf('No engine is able to work with the "%s" template.', $name));
+        throw new \RuntimeException(sprintf('No engine is able to work with the %s template.', json_encode($name)));
     }
 
     /**