Skip to content

Commit

Permalink
Fixed url issue when sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
roboshoes committed Feb 11, 2011
1 parent b3f382c commit 14e1b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/javascripts/marblerun/contentloader.js
Expand Up @@ -128,7 +128,7 @@ var ContentLoader = Class.create({
case "overview":
this.oldContent = null;
this.createOverviewMode(content);
path = "/tracks?page=" + currentPage + ((currentKeyWord.length > 0) ? "&search=" + currentKeyWord : "");
path = "/tracks?page=" + currentPage;

if (currentKeyWord.length > 0) {
path += "&search=" + currentKeyWord;
Expand Down

0 comments on commit 14e1b00

Please sign in to comment.