Changeset 3206
- Timestamp:
- 10/05/13 01:03:38 (9 years ago)
- Location:
- plugins/countdown
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/countdown/_define.php
r3193 r3206 26 26 /* Description*/ "CountDown widget", 27 27 /* Author */ "Moe (http://gniark.net/)", 28 /* Version */ '1.3 ',28 /* Version */ '1.3.1', 29 29 /* Permissions */ 'admin' 30 30 ); -
plugins/countdown/_widget.php
r3193 r3206 31 31 # set timezone 32 32 global $core; 33 $tz = $core->blog->settings-> blog_timezone;33 $tz = $core->blog->settings->system->blog_timezone; 34 34 35 35 $w->create('CountDown',__('CountDown'), … … 155 155 156 156 # get local time 157 $local_time = dt::addTimeZone($core->blog->settings-> blog_timezone);157 $local_time = dt::addTimeZone($core->blog->settings->system->blog_timezone); 158 158 159 159 $ts = mktime($w->hour,$w->minute,$w->second,$w->month,$w->day, … … 237 237 238 238 $l10n_file = 239 'jquery.countdown-'.$core->blog->settings-> lang.'.js';239 'jquery.countdown-'.$core->blog->settings->system->lang.'.js'; 240 240 if (file_exists(dirname(__FILE__).'/js/'.$l10n_file)) 241 241 {
Note: See TracChangeset
for help on using the changeset viewer.