Alright, that's a big ol' DUH!
The hack says change
PHP Code:
if ($pagenumber == 1)
to
PHP Code:
if ($pagenumber > 0)
but you get a parse error in 2.2.6 if you just copy and paste that text. You have to change it to
PHP Code:
if ($pagenumber <> 0)
Sorry if I'm a n00b and that was just something I should have gotten. Figured it out finally when I couldn't find anything on the elusive ">".
Oh well, works on 2.2.6.