Happy 2017
[squirrelmail.git] / templates / default / line_break.tpl
index 4c782813bd736cdc7adcfc8c0bd9dff2cc4a00ad..da5efb65c8dff6a47513ca6693379ac4104e55a2 100644 (file)
   *                 in double quotes as attribute values (optional;
   *                 may not be present)
   *
-  * @copyright © 1999-2008 The SquirrelMail Project Team
+  * @copyright 1999-2017 The SquirrelMail Project Team
   * @license http://opensource.org/licenses/gpl-license.php GNU Public License
-  * @version $Id: line_break.tpl 12046 2007-01-02 21:03:07Z pdontthink $
+  * @version $Id$
   * @package squirrelmail
   * @subpackage templates
   */
 
 
+// retrieve the template vars
+//
+extract($t);
+
+
 echo '<br';
-foreach ($aAttribs as $key => $value) {
+if (isset($aAttribs)) foreach ($aAttribs as $key => $value) {
     echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');
 }
 echo ' />';