Fix edit baseUrl.

This commit is contained in:
bootstraponline
2012-08-22 13:21:01 -06:00
parent 3a14ab92f0
commit 11c9cabeb3
2 changed files with 2 additions and 2 deletions
@@ -141,7 +141,7 @@ $(document).ready(function() {
url: baseUrl + '/edit/' + oldName,
data: { path: path, rename: newName, page: oldName, message: msg },
success: function() {
window.location = baseUrl + encodeURIComponent(newName);
window.location = baseUrl + '/' + encodeURIComponent(newName);
}
});
}