Changeset 534 for trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php
- Timestamp:
- Mar 10, 2010, 4:47:23 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php
r531 r534 44 44 global $xoops_config; 45 45 46 if ( defined('MULTISITE')) return MULTISITE;46 if (function_exists('is_multisite') && is_multisite()) return true; 47 47 return false; 48 48 } … … 50 50 function xpress_is_multiblog_root() { 51 51 global $blog_id; 52 if ( defined('MULTISITE') && MULTISITE&& $blog_id == 1){52 if ( xpress_is_multiblog() && $blog_id == 1){ 53 53 return true; 54 54 } else {
Note: See TracChangeset
for help on using the changeset viewer.