############################################################## ## MOD Title: pANT-0.1.0_to_0.1.1.txt ## MOD Author: The Digital Sorceress ## MOD Description: Manual update to pANT to bring it from 0.1.0 to 0.1.1 ## some bug fixes and added debugging section. This mod file ## may be useful if you've modified your pANT_functions.php and ## don't wish to out-and-out replace it with the new version. ## MOD Version: 1.0.0 ## Installation Level: easy ## Installation Time: 5 Minutes ## Files To Edit: 1 ## - pANT_functions.php ## Included Files: n/a ############################################################## ## MOD History: ## ## v1.0.0 - 06/24/2004 ## + Sunshyn found missing data entry fields - debugging added to help ## track down any other errant fields. Fields fixed. ## ############################################################## # #-----[ OPEN ]------------------------------------------ # pANT_functions.php # #-----[ FIND ]------------------------------------------ # } //end function output_data_entry_form() # #-----[ REPLACE WITH ]------------------------------------------ # // If debugging mode is on, then provide a list of POSTED parameters if ($config[debug]) { //set up an iteration counter for the results $i = 0; echo "
ALL \$_POST values
\n";
foreach ($_POST as $key => $value) {
echo "\$_POST[$key] = $value
\n";
$i ++;
}
}//end debugging block
} //end function output_data_entry_form()
#
#-----[ FIND ]------------------------------------------
#