bah, i too had this problem, and it was no measely sql defeciancy; i already had all the neccessary columns; instead it was the fact that my admin area was still affect via register globals being off, ie a variable wouldn't be initialised with it's $_GET[] data, so i needed to do it explicitly.
I added the bugfix, but cvs file is still unchanged (i dont knwo why though).
replace this
| PHP: |
if (!defined('ADMIN_PAGES')) { exit; } if (!can_admin($op)) { exit; }
| with this
| PHP: |
if (!defined('ADMIN_PAGES')) { exit; } $op=$_GET['op']; if (!can_admin($op)) { exit; }
|
|