Browse Source

Changed method for giving domain id to editor

Lukas Metzger 9 năm trước cách đây
mục cha
commit
c00b3699b1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);
         }
     });
 }