hey zeeg! thank's a lot for this very very cool plugin. i just installed v0.4 for wp 1.5.
i think, i ran into four minor bugs but i got it working now. i'd like to share my ugly hacks with you:
all bugs are in the xgallery.php
navigation counter:
-------------------
#261 if ($page == ($key+1))
bug: causes not actual, bun next image to be in "active" state
fix:
#261 if ($page == ($key))
thumbnail table start:
----------------------
#399 echo "<table id=\"gallery_area\">\n";
bug: no tr is opened, the loop afterwards starts right with a td
fix:
#399 echo "<table id=\"gallery_area\">\n <tr>\n";
thumbnail check:
----------------
#418 if (($error = create_thumbnail($file)) == false)
bug: check might return "false" even if a thumbnail is created
fix:
dunno. error message was "1" - not very usefull. i couldn't figure out what caused it. i just commented it out.
thumbnail table end:
--------------------
#456 }
#457 echo "</tr>\n</table>\n";
bug: table closes outside the "display thumbnail" if-case. it gets echoed even if no table was opened..
fix:
#456 echo "</tr>\n</table>\n";
#457 }
that's it. thank's again for your work. keep it up.
all the best, roman