I'm getting many, many copies of this onscreen since installing PHP 5.3
Notice: Undefined offset: 8192 in /var/www/gallery/include/debugger.inc.php on line 112
Here's line 112
$this->report[$filename][] = $errortype[$errno]." line $linenum: ".$errmsg;
It appears that the value of $errno is 8192
PHP 5.3 adds two new numbers:
8192=> 'use of deprecated functions', 16384=>'use of deprecated user code'. These need to be added to the errortype array at the start of the file.
We fixed this months ago. Update your gallery.
Just did. Thanks.