1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-09 14:47:04 +02:00

W3 Fixes <br/> > <br>

This commit is contained in:
Евгений
2014-01-07 00:44:58 +06:00
parent 29d506a862
commit 432942abf8
5 changed files with 6 additions and 6 deletions

View File

@@ -157,7 +157,7 @@ class Html
*/
public static function br($num = 1)
{
return str_repeat("<br />",(int) $num);
return str_repeat("<br>",(int) $num);
}
/**