Admin Pages bugs found
Status: Beta
Brought to you by:
biermana
The admin pages does not work with PHP 5.0.5-3. Also
found some application logic mistakes, like this in
the phpgiggle-admin.php file:
if ($admin_option != "validate")
{
/*
validate words folders
*/
// Validation code
}
And it should be , of course:
if ($admin_option == "validate")
{
// The same code above.
}
Also found some errors handling the parameters posted
to the pages. Maybe it's due to some incompatibility
with older versions of PHP. The parameters should be
accessed through the dictionaries _GET and _POST.
After fixing that bugs page seems to work.