|
@@ -6,7 +6,12 @@
|
|
* Template for constructing a line break.
|
|
* Template for constructing a line break.
|
|
*
|
|
*
|
|
* The following variables are available in this template:
|
|
* The following variables are available in this template:
|
|
- * (none)
|
|
|
|
|
|
+ *
|
|
|
|
+ * array $aAttribs Any extra attributes: an associative array, where
|
|
|
|
+ * keys are attribute names, and values (which are
|
|
|
|
+ * optional and might be null) should be placed
|
|
|
|
+ * in double quotes as attribute values (optional;
|
|
|
|
+ * may not be present)
|
|
*
|
|
*
|
|
* @copyright © 1999-2008 The SquirrelMail Project Team
|
|
* @copyright © 1999-2008 The SquirrelMail Project Team
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
@@ -16,4 +21,8 @@
|
|
*/
|
|
*/
|
|
|
|
|
|
|
|
|
|
-?><br />
|
|
|
|
|
|
+echo '<br';
|
|
|
|
+foreach ($aAttribs as $key => $value) {
|
|
|
|
+ echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');
|
|
|
|
+}
|
|
|
|
+echo ' />';
|