]> git.llucax.com Git - software/bife/bife-all.git/commitdiff
Fixed a bug.
authorLeandro Lucarella <llucax@gmail.com>
Mon, 30 Jun 2003 14:15:36 +0000 (14:15 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Mon, 30 Jun 2003 14:15:36 +0000 (14:15 +0000)
bife/BIFE/Translate.php

index 98dc263771820713b0db70dfbc2eafa7eb8f33fe..83cd5351200be3f5283dfb9e2666558d9fe17cf8 100644 (file)
@@ -50,9 +50,9 @@ class BIFE_Translate extends BIFE_Fallback {
      */
     function render(&$template) // ~X2C
     {
-        $this->attrs['CONTENTS'] = $this->renderContents($template);
         $name = "bife_{$this->name}";
         if ($template->exists($name, '')) {
+            $this->attrs['CONTENTS'] = $this->renderContents($template);
             $out = $template->parse($name, $this->attrs, '', '');
         } else {
             $name = $this->name;
@@ -73,4 +73,4 @@ class BIFE_Translate extends BIFE_Fallback {
 
 } // -X2C Class :Translate
 
-?>
\ No newline at end of file
+?>