XHTML compliance

- fixed (hopefully) all <img> tags
- global replace on <br> to <br />
- &amp; in URLs
- got the forum module XHTML compliant
Julian Sedding
This commit is contained in:
gustav_delius
2004-09-16 17:13:57 +00:00
parent e5c6a35c22
commit 839f2456bb
801 changed files with 3997 additions and 4208 deletions
@@ -9,23 +9,23 @@
/**
* Smarty {html_checkboxes} function plugin
*
* File: function.html_checkboxes.php<br>
* Type: function<br>
* Name: html_checkboxes<br>
* Date: 24.Feb.2003<br>
* Purpose: Prints out a list of checkbox input types<br>
* Input:<br>
* File: function.html_checkboxes.php<br />
* Type: function<br />
* Name: html_checkboxes<br />
* Date: 24.Feb.2003<br />
* Purpose: Prints out a list of checkbox input types<br />
* Input:<br />
* - name (optional) - string default "checkbox"
* - values (required) - array
* - options (optional) - associative array
* - checked (optional) - array default not set
* - separator (optional) - ie <br> or &nbsp;
* - separator (optional) - ie <br /> or &nbsp;
* - output (optional) - without this one the buttons don't have names
* Examples:
* <pre>
* {html_checkboxes values=$ids output=$names}
* {html_checkboxes values=$ids name='box' separator='<br>' output=$names}
* {html_checkboxes values=$ids checked=$checked separator='<br>' output=$names}
* {html_checkboxes values=$ids name='box' separator='<br />' output=$names}
* {html_checkboxes values=$ids checked=$checked separator='<br />' output=$names}
* </pre>
* @link http://smarty.php.net/manual/en/language.function.html.checkboxes.php {html_checkboxes}
* (Smarty online manual)