Browse Source

Fixed error with page history where previous revisions where no longer available.

joshua 15 years ago
parent
commit
5fff8234be
1 changed files with 1 additions and 1 deletions
  1. 1 1
      wiki.html

+ 1 - 1
wiki.html

@@ -783,7 +783,7 @@ wiki.history = function() {
 				});
 			},
 			error:	function(data) {
-				$('<li>Revision ' + this._revisions.ids[x] + ' is unavailable.').appendTo('#history');
+				$('<li>Previous revision is no longer available...</li>').appendTo('#history');
 			}
 		});
 		rev--;