Changeset 3488658
- Timestamp:
- 03/23/2026 07:47:53 AM (12 days ago)
- Location:
- ergonet-varnish-cache
- Files:
-
- 1 added
- 2 edited
- 3 copied
-
tags/1.0.14 (added)
-
tags/1.0.14/index.php (copied) (copied from ergonet-varnish-cache/trunk/index.php)
-
tags/1.0.14/readme.txt (copied) (copied from ergonet-varnish-cache/trunk/readme.txt) (1 diff)
-
tags/1.0.14/varnishCache.php (copied) (copied from ergonet-varnish-cache/trunk/varnishCache.php) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/varnishCache.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ergonet-varnish-cache/tags/1.0.14/readme.txt
r3420834 r3488658 3 3 Tags: cache 4 4 Requires at least: 4.9 5 Tested up to: 6.96 Stable tag: 1.0.1 35 Tested up to: 7.0 6 Stable tag: 1.0.14 7 7 Requires PHP: 7.1 8 8 License: GPLv2 or later -
ergonet-varnish-cache/tags/1.0.14/varnishCache.php
r3420834 r3488658 6 6 Plugin Name: Ergonet Cache 7 7 Description: Plugin per la gestione delle cache Nginx e Varnish su hosting Ergonet. 8 Version: 1.0.1 38 Version: 1.0.14 9 9 Author: Ergonet srl 10 10 Author URI: https://www.ergonet.it … … 91 91 92 92 function cachePurgeHomepageCallback() { 93 check_ajax_referer('ergonet_cache_nonce'); 94 if (!current_user_can('manage_options')) { 95 wp_die(-1); 96 } 93 97 $this->purgeFrontPage(); 94 98 wp_die(); … … 96 100 97 101 function cachePurgeAllCallback() { 102 check_ajax_referer('ergonet_cache_nonce'); 103 if (!current_user_can('manage_options')) { 104 wp_die(-1); 105 } 98 106 $this->purgeAll(); 99 107 wp_die(); -
ergonet-varnish-cache/trunk/readme.txt
r3420834 r3488658 3 3 Tags: cache 4 4 Requires at least: 4.9 5 Tested up to: 6.96 Stable tag: 1.0.1 35 Tested up to: 7.0 6 Stable tag: 1.0.14 7 7 Requires PHP: 7.1 8 8 License: GPLv2 or later -
ergonet-varnish-cache/trunk/varnishCache.php
r3420834 r3488658 6 6 Plugin Name: Ergonet Cache 7 7 Description: Plugin per la gestione delle cache Nginx e Varnish su hosting Ergonet. 8 Version: 1.0.1 38 Version: 1.0.14 9 9 Author: Ergonet srl 10 10 Author URI: https://www.ergonet.it … … 91 91 92 92 function cachePurgeHomepageCallback() { 93 check_ajax_referer('ergonet_cache_nonce'); 94 if (!current_user_can('manage_options')) { 95 wp_die(-1); 96 } 93 97 $this->purgeFrontPage(); 94 98 wp_die(); … … 96 100 97 101 function cachePurgeAllCallback() { 102 check_ajax_referer('ergonet_cache_nonce'); 103 if (!current_user_can('manage_options')) { 104 wp_die(-1); 105 } 98 106 $this->purgeAll(); 99 107 wp_die();
Note: See TracChangeset
for help on using the changeset viewer.