Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/04/2010 06:07:51 AM (16 years ago)
Author:
johnjamesjacoby
Message:

Fixes #2489 props wpmuguru

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/bp-core/bp-core-wpabstraction.php

    r2923 r3117  
    9090        }
    9191}
     92
     93if ( !function_exists( 'is_subdomain_install' ) ) {
     94        function is_subdomain_install() {
     95                if ( ( defined( 'VHOST' ) && 'yes' == VHOST ) || ( defined( 'SUBDOMAIN_INSTALL' ) && SUBDOMAIN_INSTALL ) )
     96                        return true;
     97
     98                return false;
     99        }
     100}
Note: See TracChangeset for help on using the changeset viewer.