Browse Source

shorten really long statement.

Taylor Otwell 13 years ago
parent
commit
8df52df894
1 changed files with 3 additions and 1 deletions
  1. 3 1
      laravel/html.php

+ 3 - 1
laravel/html.php

@@ -66,7 +66,9 @@ class HTML {
 			}
 		}
 
-		return '<link href="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>'.PHP_EOL;
+		$url = static::entities(URL::to_asset($url));
+
+		return '<link href="'.$url.'"'.static::attributes($attributes).'>'.PHP_EOL;
 	}
 
 	/**