Browse Source

Fixes an escaping issue (#89)

Tobias Reich 11 years ago
parent
commit
e500493c7c
3 changed files with 4 additions and 2 deletions
  1. 0 0
      assets/build/main.js
  2. 2 1
      assets/js/album.js
  3. 2 1
      assets/js/photo.js

File diff suppressed because it is too large
+ 0 - 0
assets/build/main.js


+ 2 - 1
assets/js/album.js

@@ -200,6 +200,7 @@ album = {
 			// Get old title if only one album is selected
 			if (album.json) oldTitle = album.json.title;
 			else if (albums.json) oldTitle = albums.json.content[albumIDs].title;
+			oldTitle = oldTitle.replace("'", "'");
 		}
 
 		buttons = [
@@ -239,7 +240,7 @@ album = {
 
 	setDescription: function(photoID) {
 
-		var oldDescription = album.json.description,
+		var oldDescription = album.json.description.replace("'", "'"),
 			description,
 			params,
 			buttons;

+ 2 - 1
assets/js/photo.js

@@ -139,6 +139,7 @@ photo = {
 			// Get old title if only one photo is selected
 			if (photo.json) oldTitle = photo.json.title;
 			else if (album.json) oldTitle = album.json.content[photoIDs].title;
+			oldTitle = oldTitle.replace("'", "'");
 		}
 
 		buttons = [
@@ -266,7 +267,7 @@ photo = {
 
 	setDescription: function(photoID) {
 
-		var oldDescription = photo.json.description,
+		var oldDescription = photo.json.description.replace("'", "'"),
 			description,
 			params,
 			buttons;

Some files were not shown because too many files changed in this diff