summaryrefslogtreecommitdiff
path: root/edit_image.php
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2016-02-07 20:33:37 +0000
committerlsces <lester@lsces.co.uk>2016-02-07 20:33:37 +0000
commit27be7b4418c3895a3abed684c97f373f9429b038 (patch)
tree93c1cabb4f5a6f920a1caf23a6df963ec6c3b7f0 /edit_image.php
parent94047c98bb3e8f6f530d257c17b01d5cc20ba893 (diff)
downloadfisheye-27be7b4418c3895a3abed684c97f373f9429b038.tar.gz
fisheye-27be7b4418c3895a3abed684c97f373f9429b038.tar.bz2
fisheye-27be7b4418c3895a3abed684c97f373f9429b038.zip
Move from Smarty2 to Smarty3 function style
Diffstat (limited to 'edit_image.php')
-rw-r--r--edit_image.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/edit_image.php b/edit_image.php
index 59bb4a0..de4fcf4 100644
--- a/edit_image.php
+++ b/edit_image.php
@@ -123,7 +123,7 @@ if( !empty($_REQUEST['saveImage']) || !empty($_REQUEST['regenerateThumbnails'] )
}
$errors = $gContent->mErrors;
-$gBitSmarty->assign_by_ref('errors', $errors);
+$gBitSmarty->assignByRef('errors', $errors);
$gContent->loadParentGalleries();
@@ -142,7 +142,7 @@ if( $gBitSystem->isFeatureActive( 'fisheye_show_all_to_admins' ) && $gBitUser->h
// $getHash['show_public'] = TRUE;
}
$galleryTree = $gFisheyeGallery->generateList( $getHash, array( 'name' => "gallery_id", 'id' => "gallerylist", 'item_attributes' => array( 'class'=>'listingtitle'), 'radio_checkbox' => TRUE, ), true );
-$gBitSmarty->assign_by_ref( 'galleryTree', $galleryTree );
+$gBitSmarty->assignByRef( 'galleryTree', $galleryTree );
$gBitSmarty->assign('requested_gallery', !empty($_REQUEST['gallery_id']) ? $_REQUEST['gallery_id'] : NULL);