From 68e9d79894754250233cb0229b4f5f40d047aa8a Mon Sep 17 00:00:00 2001 From: Sean Proctor Date: Wed, 22 Nov 2017 07:14:45 -0800 Subject: [PATCH] Change default theme to 'base' --- includes/calendar.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/calendar.php b/includes/calendar.php index 474f9ae5..53b97865 100644 --- a/includes/calendar.php +++ b/includes/calendar.php @@ -701,7 +701,7 @@ function init_config_options() { * @return array */ function get_theme_list() { - $themes = array( + $themes = array('base', 'black-tie', 'blitzer', 'cupertino', @@ -915,7 +915,7 @@ function get_header_tags($path) $theme = $phpc_cal->theme; if(empty($theme)) - $theme = 'smoothness'; + $theme = 'base'; $jquery_version = "3.2.1"; $jqueryui_version = "1.12.1"; $showdown_version = "1.8.2";