summaryrefslogtreecommitdiff
path: root/edit.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-12-23 09:29:04 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-12-23 09:29:04 +0000
commitfa838a0c8085059195af9374a4057728383b3e2b (patch)
treeb42bc543f1f3306451fff55292feae55bc6e73b3 /edit.php
parente88894169d9ce216e7fb19ae75d7582bf31fdf2e (diff)
downloadarticles-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.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/edit.php b/edit.php
index d4f2e92..4fb9686 100644
--- a/edit.php
+++ b/edit.php
@@ -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" ) );
?>