Changeset 9723 for extensions/autoupdate/trunk/template
- Timestamp:
- Mar 16, 2011, 1:45:47 AM (14 years ago)
- Location:
- extensions/autoupdate/trunk/template
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/autoupdate/trunk/template/autoupdate.js
r9721 r9723 15 15 jQuery.post( 16 16 "plugins/autoupdate/ajax/ignore_list.php", 17 { reset: true },17 { reset: true, pwg_token: pwg_token }, 18 18 function(data) { 19 19 if (data == "ok") { … … 60 60 type: 'POST', 61 61 url: 'plugins/autoupdate/ajax/update_'+type+'.php', 62 data: { id: id, revision: revision },62 data: { id: id, revision: revision, pwg_token: pwg_token }, 63 63 success: function(data) { 64 64 if (data['result']) { … … 109 109 jQuery.post( 110 110 "plugins/autoupdate/ajax/ignore_list.php", 111 { type: type+'s', id: id },111 { type: type+'s', id: id, pwg_token: pwg_token }, 112 112 function(data) { 113 113 if (data == "ok") { -
extensions/autoupdate/trunk/template/update_ext.tpl
r9721 r9723 4 4 5 5 {footer_script require='jquery.autoupdate,jquery.effects.blind,jquery.jgrowl'} 6 var pwg_token = '{$PWG_TOKEN}'; 6 7 var extList = new Array(); 7 8 var confirmMsg = '{'Are you sure?'|@translate|@escape:'javascript'}';
Note: See TracChangeset
for help on using the changeset viewer.