From 100ffb4ffe7e140894761b1b7b98a7dc6cd0e9ba Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 22 Nov 2011 23:33:37 -0600 Subject: [PATCH] remove some comment bloat. --- laravel/url.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/laravel/url.php b/laravel/url.php index f2ce6983..15cb25c4 100644 --- a/laravel/url.php +++ b/laravel/url.php @@ -27,8 +27,7 @@ public static function to($url = '', $https = false) // Since SSL is often not used while developing the application, we allow the // developer to disable SSL on all framework generated links to make it more - // convenient to work with the site while developing. When the "ssl" option - // is disabled, all links will use the HTTP protocol instead of HTTPS. + // convenient to work with the site while developing. if ($https and Config::$items['application']['ssl']) { $root = preg_replace('~http://~', 'https://', $root, 1);