biglist can handle long ids. fix #2580

This commit is contained in:
Thomas NOËL 2013-03-12 15:51:05 +01:00
parent 5c21b45e48
commit 522bb1d368
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ $(document).ready(
for (i=0; i < items.length; i++) {
item = items[i];
// 6 is length of 'itemId'
result += item.id.substr(7, 9) + ';';
result += item.id.substr(7, 30) + ';';
}
$.post('update_order', {'order': result},
function(data) { $('ul.biglist').Highlight(500, '#ff8'); });