Changeset 2164:ea097afa23e4 for inc/admin
- Timestamp:
- 09/30/13 11:04:17 (12 years ago)
- Branch:
- dcRepo
- Parents:
- 2163:d41b59b0ae2e (diff), 2162:ff2e89cb94bb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/lib.dc.page.php
r2161 r2164 605 605 self::jsVar('dotclear.msg.load_enhanced_uploader', 606 606 __('Loading enhanced uploader, please wait.')). 607 608 self::jsVar('dotclear.msg.module_author', 609 __('Author:')). 610 self::jsVar('dotclear.msg.module_details', 611 __('Details')). 612 self::jsVar('dotclear.msg.module_support', 613 __('Support')). 614 self::jsVar('dotclear.msg.module_help', 615 __('Help:')). 616 self::jsVar('dotclear.msg.module_section', 617 __('Section:')). 618 self::jsVar('dotclear.msg.module_tags', 619 __('Tags:')). 607 620 "\n//]]>\n". 608 621 "</script>\n"; -
inc/admin/lib.dc.page.php
r2157 r2164 54 54 55 55 # List of user's blogs 56 if ($core->auth-> blog_count == 1 || $core->auth->blog_count> 20)56 if ($core->auth->getBlogCount() == 1 || $core->auth->getBlogCount() > 20) 57 57 { 58 58 $blog_box = … … 60 60 html::escapeHTML($core->blog->name).'</strong>'; 61 61 62 if ($core->auth-> blog_count> 20) {62 if ($core->auth->getBlogCount() > 20) { 63 63 $blog_box .= ' - <a href="blogs.php">'.__('Change blog').'</a>'; 64 64 } … … 108 108 $user_ui_hide_std_favicon = $core->auth->user_prefs->interface->hide_std_favicon; 109 109 if (!$user_ui_hide_std_favicon) { 110 echo '<link rel="icon" type="image/png" href="images/favicon.png" />'; 111 } 112 110 echo 111 '<link rel="icon" type="image/png" href="images/favicon96-login.png" />'. 112 '<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />'; 113 } 113 114 echo 114 115 self::jsCommon().
Note: See TracChangeset
for help on using the changeset viewer.