Changeset 1369052
- Timestamp:
- 03/11/2016 09:58:58 AM (10 years ago)
- Location:
- php-code-for-posts
- Files:
-
- 37 added
- 1 deleted
- 3 edited
-
tags/2.0.6 (deleted)
-
tags/2.0.7 (added)
-
tags/2.0.7/Classes (added)
-
tags/2.0.7/Classes/Database.php (added)
-
tags/2.0.7/Classes/Install.php (added)
-
tags/2.0.7/Classes/Menu.php (added)
-
tags/2.0.7/Classes/Messages.php (added)
-
tags/2.0.7/Classes/Options.php (added)
-
tags/2.0.7/Classes/PhpCodeForPosts.php (added)
-
tags/2.0.7/Classes/Shortcode.php (added)
-
tags/2.0.7/Classes/Snippet.php (added)
-
tags/2.0.7/Codemirror (added)
-
tags/2.0.7/Codemirror/addon (added)
-
tags/2.0.7/Codemirror/addon/matchbrackets.js (added)
-
tags/2.0.7/Codemirror/lang (added)
-
tags/2.0.7/Codemirror/lang/clike.js (added)
-
tags/2.0.7/Codemirror/lang/css.js (added)
-
tags/2.0.7/Codemirror/lang/htmlmixed.js (added)
-
tags/2.0.7/Codemirror/lang/javascript.js (added)
-
tags/2.0.7/Codemirror/lang/php.js (added)
-
tags/2.0.7/Codemirror/lang/xml.js (added)
-
tags/2.0.7/Codemirror/lib (added)
-
tags/2.0.7/Codemirror/lib/codemirror.css (added)
-
tags/2.0.7/Codemirror/lib/codemirror.js (added)
-
tags/2.0.7/PHPPostCode.js (added)
-
tags/2.0.7/php-code-for-posts.php (added)
-
tags/2.0.7/php-icon.png (added)
-
tags/2.0.7/readme.txt (added)
-
tags/2.0.7/screenshot-1.jpg (added)
-
tags/2.0.7/screenshot-2.jpg (added)
-
tags/2.0.7/style.css (added)
-
tags/2.0.7/templates (added)
-
tags/2.0.7/templates/admin-index-bottom.tpl (added)
-
tags/2.0.7/templates/admin-index-default.tpl (added)
-
tags/2.0.7/templates/admin-index-edit.tpl (added)
-
tags/2.0.7/templates/admin-index-top-edit.tpl (added)
-
tags/2.0.7/templates/admin-index-top.tpl (added)
-
tags/2.0.7/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) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
php-code-for-posts/trunk/Classes/Snippet.php
r1368758 r1369052 11 11 public static function create_from_database_object( StdClass $object ) 12 12 { 13 $snippet = new static();13 $snippet = new PhpCodeForPosts_Snippet(); 14 14 $snippet 15 15 ->set_id( $object->id ) -
php-code-for-posts/trunk/php-code-for-posts.php
r1368991 r1369052 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. 65 * Version: 2.0.7 6 6 * Author: Jamie Fraser 7 7 * Author uri: http://www.jamiefraser.co.uk/?utm-campaign=PHPCodeForPosts -
php-code-for-posts/trunk/readme.txt
r1368991 r1369052 5 5 Requires at least: 3.3.1 6 6 Tested up to: 4.4.2 7 Stable tag: 2.0. 67 Stable tag: 2.0.7 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 14 14 == Description == 15 16 Currently in rapid deployment testing - fixing bugs and quirks with older versions of PHP 15 17 16 18 PHP Code for posts allows you to add your own PHP code to posts, pages, custom post types (posts) and even sidebars without the need for custom templates … … 103 105 = 2.0.6 = 104 106 * Fixed issue with compatibility with PHP 5.2 107 = 2.0.7 = 108 * Fixed another issue with compatibility with PHP 5.2 105 109 106 110 == Upgrade Notice == … … 130 134 = 2.0.6 = 131 135 * Fixed issue with compatibility with PHP 5.2 136 = 2.0.7 = 137 * Fixed another issue with compatibility with PHP 5.2 132 138 133 139 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.