Update of /cvsroot/phpwiki/phpwiki/tests/unit
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32291
Modified Files:
test.php
Log Message:
add testIncludePagePlugin loading: ADODB error with _id_cache logic
Index: test.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/tests/unit/test.php,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -2 -b -p -d -r1.33 -r1.34
--- test.php 10 Dec 2004 02:42:11 -0000 1.33
+++ test.php 22 Dec 2004 18:35:24 -0000 1.34
@@ -348,9 +348,10 @@ function updateLevelEdit(formObj) {
'method' => 'GET',
'accept-charset' => $GLOBALS['charset']),
- HiddenInputs(array('start_debug' => $start_debug)),
$js,
HTML::table(HTML::tr(array('valign'=>'top'), $form)),
HTML::input(array('type' => 'submit')),
HTML::input(array('type' => 'reset')));
+ if ($start_debug)
+ $table->pushContent(HiddenInputs(array('start_debug' => $start_debug)));
return $table->printXml();
}
|