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 | a59fc46333ed8eaecd0c23d8eb2686457cd244dd (patch) | |
| tree | d6130c0e31b130d7d7a88a2c78d6d70d1d7d7b4c /edition_edit.php | |
| parent | 8917843ed95bc941149b7f8e4ec2f8222a2a4b50 (diff) | |
| download | newsletters-a59fc46333ed8eaecd0c23d8eb2686457cd244dd.tar.gz newsletters-a59fc46333ed8eaecd0c23d8eb2686457cd244dd.tar.bz2 newsletters-a59fc46333ed8eaecd0c23d8eb2686457cd244dd.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 'edition_edit.php')
| -rw-r--r-- | edition_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/edition_edit.php b/edition_edit.php index 2b011cc..2aa1e05 100644 --- a/edition_edit.php +++ b/edition_edit.php @@ -99,7 +99,7 @@ if( $gBitSystem->isPackageActive( 'quicktags' ) ) { } // load the ajax library for this page -$gBitSmarty->assign( 'loadAjax', TRUE ); +$gBitSmarty->assign( 'loadAjax', 'prototype' ); // Display the template $gBitSystem->display( 'bitpackage:newsletters/edit_edition.tpl', ($gContent->isValid() ? tra( 'Edit Edition' ).': '.$gContent->getTitle() : tra( 'Create New Edition' )) ); |
