diff options
| author | Christian Fowler <spider@viovio.com> | 2010-03-16 03:55:10 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2010-03-16 03:55:10 +0000 |
| commit | ddaf706ea3cc35ef676c940c3204d23783b011b5 (patch) | |
| tree | b4cbcbed0e670a9df302882f5680dc06daab1e79 /image_order.php | |
| parent | 5a0ff423b246562e595992a3599fffdad19e40e0 (diff) | |
| download | fisheye-ddaf706ea3cc35ef676c940c3204d23783b011b5.tar.gz fisheye-ddaf706ea3cc35ef676c940c3204d23783b011b5.tar.bz2 fisheye-ddaf706ea3cc35ef676c940c3204d23783b011b5.zip | |
replace deprecated split call with explode
Diffstat (limited to 'image_order.php')
| -rw-r--r-- | image_order.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/image_order.php b/image_order.php index a98f778..19875f9 100644 --- a/image_order.php +++ b/image_order.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_fisheye/image_order.php,v 1.34 2010/02/08 21:27:22 wjames5 Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_fisheye/image_order.php,v 1.35 2010/03/16 03:55:10 spiderr Exp $ * @package fisheye * @subpackage functions */ @@ -99,7 +99,7 @@ if (!empty($_REQUEST['cancel'])) { $galleryItem->load(); if( isset( $batchCon[$contentId] ) ) { if( !empty( $_REQUEST['batch_command'] ) ) { - @list( $batchCommand, $batchParam ) = @split( ':', $_REQUEST['batch_command'] ); + @list( $batchCommand, $batchParam ) = @explode( ':', $_REQUEST['batch_command'] ); switch( $batchCommand ) { case 'delete': $galleryItem->expunge(); |
