diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-05-01 22:03:05 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-05-01 22:03:05 +0200 |
commit | 8f93ff5aea99ca98693a47d3f09043f65dee9ac2 (patch) | |
tree | e5493b8ce523fe78bfce42c772bfc4d8c5a196a9 /application/views/file/header.php | |
parent | e7797f36cf7fd98c825f497bc7f24015c95e8d22 (diff) |
use function to generate links to css files
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/file/header.php')
-rw-r--r-- | application/views/file/header.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/views/file/header.php b/application/views/file/header.php index ca540c805..733c6788e 100644 --- a/application/views/file/header.php +++ b/application/views/file/header.php @@ -3,7 +3,7 @@ <head> <title><?php echo isset($title) ? $title : ''; ?></title> - <link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>data/default.css?<?php echo filemtime(FCPATH."/data/default.css"); ?>" media="screen" /> + <link rel="stylesheet" type="text/css" href="<?php echo link_with_mtime("/data/default.css"); ?>" media="screen" /> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <meta name="robots" content="noindex,nofollow" /> </head> |