Changeset 1369461
- Timestamp:
- 03/11/2016 07:52:17 PM (10 years ago)
- Location:
- php-code-for-posts
- Files:
-
- 37 added
- 1 deleted
- 3 edited
-
tags/2.0.8 (deleted)
-
tags/2.0.9 (added)
-
tags/2.0.9/Classes (added)
-
tags/2.0.9/Classes/Database.php (added)
-
tags/2.0.9/Classes/Install.php (added)
-
tags/2.0.9/Classes/Menu.php (added)
-
tags/2.0.9/Classes/Messages.php (added)
-
tags/2.0.9/Classes/Options.php (added)
-
tags/2.0.9/Classes/PhpCodeForPosts.php (added)
-
tags/2.0.9/Classes/Shortcode.php (added)
-
tags/2.0.9/Classes/Snippet.php (added)
-
tags/2.0.9/Codemirror (added)
-
tags/2.0.9/Codemirror/addon (added)
-
tags/2.0.9/Codemirror/addon/matchbrackets.js (added)
-
tags/2.0.9/Codemirror/lang (added)
-
tags/2.0.9/Codemirror/lang/clike.js (added)
-
tags/2.0.9/Codemirror/lang/css.js (added)
-
tags/2.0.9/Codemirror/lang/htmlmixed.js (added)
-
tags/2.0.9/Codemirror/lang/javascript.js (added)
-
tags/2.0.9/Codemirror/lang/php.js (added)
-
tags/2.0.9/Codemirror/lang/xml.js (added)
-
tags/2.0.9/Codemirror/lib (added)
-
tags/2.0.9/Codemirror/lib/codemirror.css (added)
-
tags/2.0.9/Codemirror/lib/codemirror.js (added)
-
tags/2.0.9/PHPPostCode.js (added)
-
tags/2.0.9/php-code-for-posts.php (added)
-
tags/2.0.9/php-icon.png (added)
-
tags/2.0.9/readme.txt (added)
-
tags/2.0.9/screenshot-1.jpg (added)
-
tags/2.0.9/screenshot-2.jpg (added)
-
tags/2.0.9/style.css (added)
-
tags/2.0.9/templates (added)
-
tags/2.0.9/templates/admin-index-bottom.tpl (added)
-
tags/2.0.9/templates/admin-index-default.tpl (added)
-
tags/2.0.9/templates/admin-index-edit.tpl (added)
-
tags/2.0.9/templates/admin-index-top-edit.tpl (added)
-
tags/2.0.9/templates/admin-index-top.tpl (added)
-
tags/2.0.9/templates/admin-snippet-row.tpl (added)
-
trunk/Classes/Snippet.php (modified) (1 diff)
-
trunk/php-code-for-posts.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
php-code-for-posts/trunk/Classes/Snippet.php
r1369272 r1369461 141 141 { 142 142 $snippet_id = isset( $post_fields['item'] ) ? $post_fields['item'] : 0; 143 $snippet = $snippet_id > 0 ? PhpCodeForPosts_Database::load_single_snippet( $snippet_id ) : new static;143 $snippet = $snippet_id > 0 ? PhpCodeForPosts_Database::load_single_snippet( $snippet_id ) : new PhpCodeForPosts_Snippet(); 144 144 145 145 $snippet->set_name( stripslashes($post_fields['name']) ); -
php-code-for-posts/trunk/php-code-for-posts.php
r1369272 r1369461 3 3 * Plugin Name: PHP Code For Posts 4 4 * Description: Insert and Execute PHP Code in WordPress Content. This plugin also enables shortcodes for the text widget. 5 * Version: 2.0. 85 * Version: 2.0.9 6 6 * Author: Jamie Fraser 7 7 * Author uri: http://www.jamiefraser.co.uk/?utm-campaign=PHPCodeForPosts -
php-code-for-posts/trunk/readme.txt
r1369272 r1369461 5 5 Requires at least: 3.3.1 6 6 Tested up to: 4.4.2 7 Stable tag: 2.0. 87 Stable tag: 2.0.9 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 109 109 = 2.0.8 = 110 110 * Fixed the stripping of backslashes from code 111 = 2.0.9 = 112 * Fixed another issue with compatibility with PHP 5.2 - seriously, why is anyone using it?! 111 113 112 114 == Upgrade Notice == … … 140 142 = 2.0.8 = 141 143 * Fixed the stripping of backslashes from code 144 = 2.0.9 = 145 * Fixed another issue with compatibility with PHP 5.2 142 146 143 147 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.