Changeset 137830
- Timestamp:
- 07/22/2009 10:33:34 AM (17 years ago)
- Location:
- hackadelic-codification/trunk
- Files:
-
- 2 added
- 3 edited
-
common (added)
-
common/xsig.php (added)
-
hackadelic-codification-editkit.php (modified) (4 diffs)
-
hackadelic-codification.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hackadelic-codification/trunk/hackadelic-codification-editkit.php
r136760 r137830 2 2 /* 3 3 Plugin Name: Hackadelic Codification Editing Kit 4 Version: 0. 24 Version: 0.3 5 5 Plugin URI: http://hackadelic.com/solutions/wordpress/codification 6 6 Description: Tools to enrich posts and pages with specific JavaScript and CSS code. Perfect for front-end developers to quickly setup demos in their blog. … … 48 48 //die; 49 49 foreach (array('js', 'css') as $lang): 50 $this->checkNonce($lang);50 if (!$this->checkNonce($lang) ) continue; 51 51 foreach (array('code', 'files') as $type): 52 52 $key = $lang . $type; … … 58 58 endforeach; 59 59 endforeach; 60 return $entryID; 60 61 } 61 62 … … 97 98 $nonce = $_POST[$nonceName]; 98 99 $ok = wp_verify_nonce($nonce, $context); 99 if (!$ok) wp_die("Invalid operation context"); 100 //if (!$ok) wp_die("Invalid operation context"); 101 return $ok; 100 102 } 101 103 } -
hackadelic-codification/trunk/hackadelic-codification.php
r136760 r137830 2 2 /* 3 3 Plugin Name: Hackadelic Codification 4 Version: 0. 24 Version: 0.3 5 5 Plugin URI: http://hackadelic.com/solutions/wordpress/codification 6 6 Description: Tools to enrich posts and pages with specific JavaScript and CSS code. Perfect for front-end developers to quickly setup demos in their blog. -
hackadelic-codification/trunk/readme.txt
r136760 r137830 4 4 Tags: content, page, Post, admin, AJAX, javascript, CSS, code 5 5 Requires at least: 2.7 6 Tested up to: 2.8. 16 Tested up to: 2.8.2 7 7 Stable tag: trunk 8 8 … … 18 18 19 19 == Changelog == 20 21 #### 0.3 22 23 * Fixed a glitch that interfered with editing of existing comments in the dashboard. 24 * Fixed a deployment/packaging error (a file was missing). 25 * Verified compatibility with WP 2.8.2 20 26 21 27 #### 0.2
Note: See TracChangeset
for help on using the changeset viewer.