Aleksander Machniak
2013-10-30 ccb1323dc8f158cd40ba71c4dd25e563f7fc00fd
Move setting _next_uid to selection_post_data()
1 files modified
6 ■■■■ changed files
program/js/app.js 6 ●●●● patch | view | raw | blame | history
program/js/app.js
@@ -2742,9 +2742,6 @@
      }
    }
    if (this.env.display_next && this.env.next_uid)
      post_data._next_uid = this.env.next_uid;
    if (count < 0)
      post_data._count = (count*-1);
    // remove threads from the end of the list
@@ -2780,6 +2777,9 @@
    if (this.env.search_request)
      data._search = this.env.search_request;
    if (this.env.display_next && this.env.next_uid)
      post_data._next_uid = this.env.next_uid;
    return data;
  };