Changeset 1825
- Timestamp:
- 01/26/2008 11:20:25 AM (12 months ago)
- Files:
-
- 1 modified
-
trunk/system/helpers/html.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/helpers/html.php
r1769 r1825 210 210 * @return string 211 211 */ 212 public static function stylesheet($style, $media = FALSE, $index = TRUE)212 public static function stylesheet($style, $media = FALSE, $index = FALSE) 213 213 { 214 214 return self::link($style, 'stylesheet', 'text/css', '.css', $media, $index); … … 226 226 * @return string 227 227 */ 228 public static function link($href, $rel, $type, $suffix = FALSE, $media = FALSE, $index = TRUE)228 public static function link($href, $rel, $type, $suffix = FALSE, $media = FALSE, $index = FALSE) 229 229 { 230 230 $compiled = ''; … … 259 259 * @return string 260 260 */ 261 public static function script($script, $index = TRUE)261 public static function script($script, $index = FALSE) 262 262 { 263 263 $compiled = ''; … … 287 287 * @return string 288 288 */ 289 public static function image($attr = NULL, $index = TRUE)289 public static function image($attr = NULL, $index = FALSE) 290 290 { 291 291 if ( ! is_array($attr))
