|
@@ -520,10 +520,11 @@ photo = {
|
|
|
|
|
|
getArchive: function(photoID) {
|
|
getArchive: function(photoID) {
|
|
|
|
|
|
- var link;
|
|
|
|
|
|
+ var link,
|
|
|
|
+ url = "php/api.php?function=getPhotoArchive&photoID=" + photoID;
|
|
|
|
|
|
- if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", "php/api.php?function=getPhotoArchive&photoID=" + photoID);
|
|
|
|
- else link = location.href.replace(location.hash, "") + "php/api.php?function=getPhotoArchive&photoID=" + photoID;
|
|
|
|
|
|
+ if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", url);
|
|
|
|
+ else link = location.href.replace(location.hash, "") + url;
|
|
|
|
|
|
if (lychee.publicMode) link += "&password=" + password.value;
|
|
if (lychee.publicMode) link += "&password=" + password.value;
|
|
|
|
|
|
@@ -539,8 +540,10 @@ photo = {
|
|
|
|
|
|
getViewLink: function(photoID) {
|
|
getViewLink: function(photoID) {
|
|
|
|
|
|
- if (location.href.indexOf("index.html")>0) return location.href.replace("index.html" + location.hash, "view.php?p=" + photoID);
|
|
|
|
- else return location.href.replace(location.hash, "view.php?p=" + photoID);
|
|
|
|
|
|
+ var url = "view.php?p=" + photoID;
|
|
|
|
+
|
|
|
|
+ if (location.href.indexOf("index.html")>0) return location.href.replace("index.html" + location.hash, url);
|
|
|
|
+ else return location.href.replace(location.hash, url);
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|