From a9029ddfe9dac9fc59f93abbdb93b7e228fafe9b Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 2 Jul 2011 07:17:17 -0500 Subject: [PATCH] change form and html class to use html5 style elements. --- system/form.php | 2 +- system/html.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/system/form.php b/system/form.php index 49d60b36..56439455 100644 --- a/system/form.php +++ b/system/form.php @@ -317,7 +317,7 @@ class Form { $attributes['value'] = $value; $attributes['id'] = static::id($name, $attributes); - return ''.PHP_EOL; + return ''.PHP_EOL; } /** diff --git a/system/html.php b/system/html.php index 89968130..c562de09 100644 --- a/system/html.php +++ b/system/html.php @@ -32,7 +32,7 @@ class HTML { */ public static function style($url, $media = 'all') { - return ''.PHP_EOL; + return ''.PHP_EOL; } /** @@ -146,7 +146,7 @@ class HTML { public static function image($url, $alt = '', $attributes = array()) { $attributes['alt'] = static::entities($alt); - return ''; + return ''; } /** @@ -157,7 +157,7 @@ class HTML { */ public static function breaks($count = 1) { - return str_repeat('
', $count); + return str_repeat('
', $count); } /**