diff options
| author | Lester Caine <lester@lsces.co.uk> | 2009-06-18 06:44:46 +0000 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2009-06-18 06:44:46 +0000 |
| commit | a8b3ef6c4d046e92f935999a2eaff2b173ccdb39 (patch) | |
| tree | 72a9b41dca3fb2fbe37f43b13fb0ddc57b6e915e | |
| parent | cdbcc6114ab59e859f14f6f8d03533819d6cf60a (diff) | |
| download | themes-a8b3ef6c4d046e92f935999a2eaff2b173ccdb39.tar.gz themes-a8b3ef6c4d046e92f935999a2eaff2b173ccdb39.tar.bz2 themes-a8b3ef6c4d046e92f935999a2eaff2b173ccdb39.zip | |
split is replaced by explode in PHP5.3
| -rw-r--r-- | modules_inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules_inc.php b/modules_inc.php index 326c7e4..77d7239 100644 --- a/modules_inc.php +++ b/modules_inc.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_themes/modules_inc.php,v 1.10 2009/03/31 06:30:03 lsces Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_themes/modules_inc.php,v 1.11 2009/06/18 06:44:46 lsces Exp $ * @package themes * @subpackage functions */ @@ -19,7 +19,7 @@ if( $gBitThemes->mLayout && empty( $gHideModules )) { for ($i = 0; $i < count( $gBitThemes->mLayout[$column] ); $i++) { $r = &$gBitThemes->mLayout[$column][$i]; if( !empty( $r['visible'] )) { - list( $package, $template ) = split( '/', $r['module_rsrc'] ); + list( $package, $template ) = explode( '/', $r['module_rsrc'] ); // deal with custom modules if( $package == '_custom:custom' ) { global $gBitLanguage; |
