diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-09 18:54:17 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-09 18:54:17 +0000 |
commit | 4cc70a18519bc5694a59060301278fb5bf911bac (patch) | |
tree | bb13c86e762c6e525a57bfbdea2924ab5d564ab0 | |
parent | a8713a769533913004a2ac7cdf65ed60dbb80a7d (diff) |
change url::base() to url::file()
-rw-r--r-- | themes/default/views/page.html.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index 29edc734..f394b076 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -5,14 +5,14 @@ <head> <title><?= _("Browse Photos") ?> :: <?= $item->title ?></title> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <link rel="stylesheet" type="text/css" href="<?= url::base() . - "lib/yui/reset-fonts-grids.css" ?>" media="screen,print,projection" /> - <link rel="stylesheet" type="text/css" href="<?= url::base() . - "lib/yui/base-min.css" ?>" media="screen,print,projection" /> + <link rel="stylesheet" type="text/css" href="<?= url::file("lib/yui/reset-fonts-grids.css") ?>" + media="screen,print,projection" /> + <link rel="stylesheet" type="text/css" href="<?= url::file("lib/yui/base-min.css") ?>" + media="screen,print,projection" /> <link rel="stylesheet" type="text/css" href="<?= $theme->url("css/screen.css") ?>" media="screen,print,projection" /> - <script src="<?= url::base() . "lib/jquery.js" ?>" type="text/javascript"></script> - <script src="<?= url::base() . "lib/jquery.jeditable.js" ?>" type="text/javascript"></script> + <script src="<?= url::file("lib/jquery.js") ?>" type="text/javascript"></script> + <script src="<?= url::file("lib/jquery.jeditable.js") ?>" type="text/javascript"></script> </head> <body> |