Has anyone updated their taps for gallery 1.4.1? I'm specifically referring to the slideshow. I've actually been able to tap the slideshow link but I'm having trouble with the low-tech slideshow links.
Here's what I have so far:
.htaccess
Code: › RewriteRule ^gallery-slideshow_full_low-([a-zA-Z0-9_-]*)-([0-9]*)-([0-9]*)-([0-9]*)-([0-9]*)-([0-9-]*).html modules.php?set_albumName=$1&slide_index=$2&slide_loop=$3&slide_pause=$4&slide_full=$5&slide_dir=$6&op=modload&name=gallery&file=index&include=slideshow_low.php
RewriteRule ^gallery-slideshow_low-([a-zA-Z0-9_-]*)-([0-9]*)-([0-9]*)-([0-9]*)-([0-9]*)-([0-9]*).html modules.php?set_albumName=$1&op=modload&name=gallery&file=index&include=slideshow_low.php&slide_index=$2&slide_full=$3&slide_loop=$4&slide_pause=$5&slide_dir=$6#
RewriteRule ^gallery-slideshow_low-([a-zA-Z0-9_-]*).html modules.php?set_albumName=$1&op=modload&name=gallery&file=index&include=slideshow_low.php
RewriteRule ^gallery-slideshow-([a-zA-Z0-9_-]*).html modules.php?set_albumName=$1&op=modload&name=gallery&file=index&include=slideshow.php
$urlin
Code: › "'(?<!/)modules.php\?set_albumName=([a-zA-Z0-9_-]*)&op=modload&name=gallery&file=index&include=slideshow_low.php&slide_index=([0-9]*)&slide_full=([0-9]*)&slide_loop=([0-9]*)&slide_pause=([0-9]*)&slide_dir=([0-9]*)'",
"'(?<!/)modules.php\?set_albumName=([a-zA-Z0-9_-]*)&slide_index=([0-9]*)&slide_loop=([0-9]*)&slide_pause=([0-9]*)&slide_full=([0-9]*)&slide_dir=([0-9-]*)&op=modload&name=gallery&file=index&include=slideshow_low.php'",
"'(?<!/)modules.php\?set_albumName=([a-zA-Z0-9_-]*)&op=modload&name=gallery&file=index&include=slideshow_low.php(?!&)'",
"'(?<!/)modules.php\?set_albumName=([a-zA-Z0-9_-]*)&op=modload&name=gallery&file=index&include=slideshow.php'",
$urlout
Code: › "gallery-slideshow_low-\\1-\\2-\\3-\\4-\\5-\\6.html",
"gallery-slideshow_full_low-\\1-\\2-\\3-\\4-\\5-\\6.html",
"gallery-slideshow_low-\\1.html",
"gallery-slideshow-\\1.html",
As I said, the normal slideshow works fine but the low-tech slideshow has problems. Can anyone spot what I've done wrong?