diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-12-23 09:29:04 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-12-23 09:29:04 +0000 |
| commit | ce4ddbe874241dbaf77cbabec7664a634f16bfd8 (patch) | |
| tree | a96815bb0de758e3ec7da99338a43b0ecd056b84 /edit.php | |
| parent | 7e77e3da39f030abf240776e6e8bc63f39c54187 (diff) | |
| download | fisheye-ce4ddbe874241dbaf77cbabec7664a634f16bfd8.tar.gz fisheye-ce4ddbe874241dbaf77cbabec7664a634f16bfd8.tar.bz2 fisheye-ce4ddbe874241dbaf77cbabec7664a634f16bfd8.zip | |
friggin smarty bug... when you set a var TRUE, it doesn't check to see what it's value is, but just assumes it's always true. need to specify prototype lib explicitly
Diffstat (limited to 'edit.php')
| -rw-r--r-- | edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_fisheye/edit.php,v 1.17 2006/10/02 03:19:52 spiderr Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_fisheye/edit.php,v 1.18 2006/12/23 09:29:04 squareing Exp $ * @package fisheye * @subpackage functions */ @@ -94,7 +94,7 @@ $errors = (!empty($gContent->mErrors) ? $gContent->mErrors : array()); $gBitSmarty->assign_by_ref('errors', $errors); $gBitSystem->setOnloadScript( 'updateGalleryPagination();' ); -$gBitSmarty->assign( 'loadAjax', TRUE ); +$gBitSmarty->assign( 'loadAjax', 'prototype' ); $gallery = $gContent->getParentGalleries(); $gBitSmarty->assign_by_ref( 'parentGalleries', $gallery ); |
