瀏覽代碼

Changed method for giving domain id to editor

Lukas Metzger 9 年之前
父節點
當前提交
c00b3699b1
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      js/domains.js

+ 1 - 1
js/domains.js

@@ -91,7 +91,7 @@ function recreateTable(data) {
         var type = $(this).children('td').eq(2).text();
         
         if(type == 'MASTER') {
-            location.assign('edit-master.php?id=' + id);
+            location.assign('edit-master.php#' + id);
         }
     });
 }