diff options
| author | Andy Staudacher <andy.st@gmail.com> | 2009-06-29 19:56:52 -0700 | 
|---|---|---|
| committer | Andy Staudacher <andy.st@gmail.com> | 2009-06-29 19:56:52 -0700 | 
| commit | 06172ecdb9e7a4acf158387c4804b6424e8b1b15 (patch) | |
| tree | 27e6e161eab1da274623634d7e511048b22b13cb /themes/admin_default/views | |
| parent | 333c9d47e30125bcd7092adacedabaf1fcb417b6 (diff) | |
| parent | 8af19c0625eca7cd7360ebc1036cd654bdf88145 (diff) | |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'themes/admin_default/views')
| -rw-r--r-- | themes/admin_default/views/admin.html.php | 19 | 
1 files changed, 7 insertions, 12 deletions
| diff --git a/themes/admin_default/views/admin.html.php b/themes/admin_default/views/admin.html.php index 62f9761f..2a231057 100644 --- a/themes/admin_default/views/admin.html.php +++ b/themes/admin_default/views/admin.html.php @@ -6,19 +6,14 @@      <meta http-equiv="content-type" content="text/html; charset=UTF-8" />      <title><?= t("Admin Dashboard") ?></title>      <link rel="shortcut icon" href="<?= url::file("themes/default/images/favicon.ico") ?>" type="image/x-icon" /> -    <link rel="stylesheet" type="text/css" href="<?= url::file("lib/yui/reset-fonts-grids.css") ?>" -        media="screen,projection" /> -    <link rel="stylesheet" type="text/css" type="text/css" href="<?= url::file("lib/themeroller/ui.base.css") ?>" -        media="screen,projection" /> -    <link rel="stylesheet" type="text/css" href="<?= url::file("lib/superfish/css/superfish.css") ?>" -        media="screen,projection" /> -    <link rel="stylesheet" type="text/css" href="<?= url::file("themes/default/css/screen.css") ?>" -        media="screen,projection" /> -    <link rel="stylesheet" type="text/css" href="<?= $theme->theme_url("css/screen.css") ?>" -        media="screen,projection" /> + +    <?= $theme->css("lib/yui/reset-fonts-grids.css") ?> +    <?= $theme->css("lib/themeroller/ui.base.css") ?> +    <?= $theme->css("lib/superfish/css/superfish.css") ?> +    <?= $theme->css("themes/default/css/screen.css") ?> +    <?= $theme->theme_css("css/screen.css") ?>     <!--[if IE]> -    <link rel="stylesheet" type="text/css" href="<?= $theme->theme_url("css/fix-ie.css") ?>" -        media="screen,print,projection" /> +    <?= $theme->theme_css("css/fix-ie.css") ?>     <![endif]-->     <?= $theme->script("lib/jquery.js") ?> | 
