From a4ca806081c7b81f4224a1d5b9b2360b9ab3fab3 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 3 Jul 2011 15:34:31 -0500 Subject: [PATCH] removed spaces and br function from html class. --- system/html.php | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/system/html.php b/system/html.php index aba7a563..13c88fa7 100644 --- a/system/html.php +++ b/system/html.php @@ -149,28 +149,6 @@ class HTML { return ''; } - /** - * Generate HTML breaks. - * - * @param int $count - * @return string - */ - public static function breaks($count = 1) - { - return str_repeat('
', $count); - } - - /** - * Generate non-breaking spaces. - * - * @param int $count - * @return string - */ - public static function spaces($count = 1) - { - return str_repeat(' ', $count); - } - /** * Generate an ordered list. *