Need to extract template vars - oops
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 3 Jul 2008 17:45:17 +0000 (17:45 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 3 Jul 2008 17:45:17 +0000 (17:45 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13212 7612ce4b-ef26-0410-bec9-ea0150e637f0

templates/default/horizontal_rule.tpl
templates/default/line_break.tpl

index 8ca2bbaac52985a4984f01f94d1422ada8918439..46d7c58478ea76cdab044940abb67825d426ce5f 100644 (file)
   */
 
 
   */
 
 
+// retrieve the template vars
+//
+extract($t);
+
+
 echo '<hr'; 
 foreach ($aAttribs as $key => $value) {
     echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');
 echo '<hr'; 
 foreach ($aAttribs as $key => $value) {
     echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');
index 4c782813bd736cdc7adcfc8c0bd9dff2cc4a00ad..41e774c058b9f47cab015695c17f6986f4bffd8e 100644 (file)
   */
 
 
   */
 
 
+// retrieve the template vars
+//
+extract($t);
+
+
 echo '<br';
 foreach ($aAttribs as $key => $value) {
     echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');
 echo '<br';
 foreach ($aAttribs as $key => $value) {
     echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');