Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
1 to 2 of 2
Index: plog-functions.php
===================================================================
--- plog-functions.php (revision 34)
+++ plog-functions.php (revision 35)
@@ -1074,6 +1074,10 @@
return $config['baseurl'].'?level=collection&id='.$id;
} else if ($level == "album") {
$rv = $config['baseurl'].'?level=album&id='.$id;
+ if(isset($_GET['plog_page']))
+ {
+ $rv .= '&plog_page=' . $_GET['plog_page'];
+ }
if (sizeof($arg) > 0) {
foreach($arg as $akey => $aval) {
// mod_rewrite url-s need /sorted in them, the old style ones do not.
@@ -1085,6 +1089,10 @@
}
} else if ($level == "picture") {
$rv = $config['baseurl'].'?level=picture&id='.$id;
+ if(isset($_GET['plog_page']))
+ {
+ $rv .= '&plog_page=' . $_GET['plog_page'];
+ }
}
}
1 to 2 of 2