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 | fa838a0c8085059195af9374a4057728383b3e2b (patch) | |
| tree | b42bc543f1f3306451fff55292feae55bc6e73b3 /edit.php | |
| parent | e88894169d9ce216e7fb19ae75d7582bf31fdf2e (diff) | |
| download | articles-fa838a0c8085059195af9374a4057728383b3e2b.tar.gz articles-fa838a0c8085059195af9374a4057728383b3e2b.tar.bz2 articles-fa838a0c8085059195af9374a4057728383b3e2b.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_articles/edit.php,v 1.31 2006/06/16 21:12:18 sylvieg Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/edit.php,v 1.32 2006/12/23 09:29:04 squareing Exp $ * @package article * @subpackage functions */ @@ -111,6 +111,6 @@ $gBitSmarty->assign( 'feedback', ( !empty( $feedback ) ? $feedback : NULL ) ); // Display the Index Template $gBitSmarty->assign( 'show_page_bar', 'n' ); // load the ajax library for this page -$gBitSmarty->assign( 'loadAjax', TRUE ); +$gBitSmarty->assign( 'loadAjax', 'prototype' ); $gBitSystem->display( 'bitpackage:articles/edit_article.tpl', tra( "Articles" ) ); ?> |
