Lines 5-12
Link Here
|
5 |
<script type="text/javascript" > |
5 |
<script type="text/javascript" > |
6 |
//<![CDATA[ |
6 |
//<![CDATA[ |
7 |
function confirm_deletion(id) { |
7 |
function confirm_deletion(id) { |
8 |
|
8 |
var is_confirmed = confirm(_('Are you sure you want to delete this authority?')); |
9 |
var is_confirmed = confirm('Are you sure you want to delete this authority?'); |
|
|
10 |
if (is_confirmed) { |
9 |
if (is_confirmed) { |
11 |
window.location="authorities-home.pl?op=delete" |
10 |
window.location="authorities-home.pl?op=delete" |
12 |
+ "&authid=" + id |
11 |
+ "&authid=" + id |
13 |
- |
|
|