Just wanted to let everyone know (if they didn't already) that at least Opera 6 will work with the "better" slideshow mode. To get Gallery to detect correctly, about a third of the way down slideshow.php, change:
<!-- BBCode Start --><TABLE BORDER=0 ALIGN=CENTER WIDTH=85%><TR><TD><font class="pn-sub">Code:</font><HR></TD></TR><TR><TD><FONT class="pn-sub"><PRE>if (is_ie4up || is_nav6up) { </TD></TR></TABLE><!-- BBCode End -->
to:
<!-- BBCode Start --><TABLE BORDER=0 ALIGN=CENTER WIDTH=85%><TR><TD><font class="pn-sub">Code:</font><HR></TD></TR><TR><TD><FONT class="pn-sub"><PRE>if (is_ie4up || is_nav6up || is_opera5up) { </TD></TR></TABLE><!-- BBCode End -->
Tim
Posts: 3473
If you're 100% sure that it works, can you make a patchfile against the CVS version of slideshow.php and send it to Bharat to roll into the codebase? He doesn't read this forum.
-Beckett (
)
Posts: 79
I'd be happy to. However, having never done this before I'll need a little push in the right direction.
Posts: 3473
Put this in a file, call it something like "slideshow.php.patch" and e-mail it to Bharat or post on gallery-devel (
), along with a note saying that it works fine in Opera 5.
232c232
< if (is_ie4up || is_nav6up) {
---
> if (is_ie4up || is_opera5up || is_nav6up) {
-Beckett (
)