diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-05-04 18:12:18 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-05-04 18:12:18 +0000 |
commit | e274f97c879bff059511472a4d14a3584941393e (patch) | |
tree | afc46696e9c6c3025babe52acd13c4d45cb3d876 /includes | |
parent | 0021293533d2bd9434f4b404b513e6d482069f03 (diff) | |
download | brdo-e274f97c879bff059511472a4d14a3584941393e.tar.gz brdo-e274f97c879bff059511472a4d14a3584941393e.tar.bz2 |
- Removed the Xtemplate engine and added the PHPTemplate engine.
- Converted the Bluemarine theme from XTemplate to PHPTemplate.
- Moved the the Pushbutton theme and the Xtemplate engine to the contributions repository.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/theme.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index a65f8b713..0bc46252a 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -211,8 +211,8 @@ function path_to_theme() { */ function theme_get_settings($key = NULL) { $defaults = array( - 'primary_links' => l(t('edit primary links'), 'admin/themes/settings'), - 'secondary_links' => l(t('edit secondary links'), 'admin/themes/settings'), + 'primary_links' => array(), + 'secondary_links' => array(), 'mission' => '', 'default_logo' => 1, 'logo_path' => '', |