MailTemplateList.php
authorEdward <edward@roojs.com>
Thu, 20 Feb 2014 11:13:46 +0000 (19:13 +0800)
committerEdward <edward@roojs.com>
Thu, 20 Feb 2014 11:13:46 +0000 (19:13 +0800)
MailTemplateList.php

index cbdfb5b..4df5611 100644 (file)
@@ -11,7 +11,7 @@ class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle
         
         $templateDir = explode(PATH_SEPARATOR, $fopts['templateDir']);
         
-//        $base = 'http://' . $_SERVER['SERVER_NAME'] . $this->rootURL;
+        $base = 'http://' . $_SERVER['SERVER_NAME'] . $this->rootURL;
         
 //        $path = '/home/edward/gitlive/web.madeinnz/Pman/Shop/templates/mail/orderShipment.body.html';
 //        
@@ -33,11 +33,11 @@ class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle
                         continue;
                     }
                     
-                    $file = "$dir/mail/$entry";
+                    $path = "$dir/mail/$entry";
                     
                     $ret[] = array(
                         'file' => $entry,
-                        'content' => $this->convertStyle('', $file, false)
+                        'content' => $this->convertStyle($base, $path, false)
                     );
                 }