diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-12-23 09:29:05 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-12-23 09:29:05 +0000 |
| commit | d149f43e0991fd5311c96364ad972118ab656f76 (patch) | |
| tree | d49a80ac6ff86f05b0d18973b66f73a305057449 /edit.php | |
| parent | 93f51dec815a27afa43133e6c0cf307b20cfe44c (diff) | |
| download | wiki-d149f43e0991fd5311c96364ad972118ab656f76.tar.gz wiki-d149f43e0991fd5311c96364ad972118ab656f76.tar.bz2 wiki-d149f43e0991fd5311c96364ad972118ab656f76.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 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ <?php /** - * $Header: /cvsroot/bitweaver/_bit_wiki/edit.php,v 1.26 2006/08/13 21:28:12 hash9 Exp $ + * $Header: /cvsroot/bitweaver/_bit_wiki/edit.php,v 1.27 2006/12/23 09:29:05 squareing Exp $ * * Copyright( c ) 2004 bitweaver.org * Copyright( c ) 2003 tikwiki.org @@ -8,7 +8,7 @@ * All Rights Reserved. See copyright.txt for details and a complete list of authors. * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details * - * $Id: edit.php,v 1.26 2006/08/13 21:28:12 hash9 Exp $ + * $Id: edit.php,v 1.27 2006/12/23 09:29:05 squareing Exp $ * @package wiki * @subpackage functions */ @@ -482,6 +482,6 @@ $gBitSmarty->assign_by_ref( 'pageInfo', $formInfo ); $gBitSmarty->assign_by_ref( 'errors', $gContent->mErrors ); // load the ajax library for this page -$gBitSmarty->assign( 'loadAjax', TRUE ); +$gBitSmarty->assign( 'loadAjax', 'prototype' ); $gBitSystem->display( 'bitpackage:wiki/edit_page.tpl', 'Edit: '.$gContent->getTitle() ); ?> |
