Changeset 1368991
- Timestamp:
- 03/11/2016 08:42:32 AM (10 years ago)
- Location:
- php-code-for-posts
- Files:
-
- 37 added
- 1 deleted
- 2 edited
-
tags/2.0.5 (deleted)
-
tags/2.0.6 (added)
-
tags/2.0.6/Classes (added)
-
tags/2.0.6/Classes/Database.php (added)
-
tags/2.0.6/Classes/Install.php (added)
-
tags/2.0.6/Classes/Menu.php (added)
-
tags/2.0.6/Classes/Messages.php (added)
-
tags/2.0.6/Classes/Options.php (added)
-
tags/2.0.6/Classes/PhpCodeForPosts.php (added)
-
tags/2.0.6/Classes/Shortcode.php (added)
-
tags/2.0.6/Classes/Snippet.php (added)
-
tags/2.0.6/Codemirror (added)
-
tags/2.0.6/Codemirror/addon (added)
-
tags/2.0.6/Codemirror/addon/matchbrackets.js (added)
-
tags/2.0.6/Codemirror/lang (added)
-
tags/2.0.6/Codemirror/lang/clike.js (added)
-
tags/2.0.6/Codemirror/lang/css.js (added)
-
tags/2.0.6/Codemirror/lang/htmlmixed.js (added)
-
tags/2.0.6/Codemirror/lang/javascript.js (added)
-
tags/2.0.6/Codemirror/lang/php.js (added)
-
tags/2.0.6/Codemirror/lang/xml.js (added)
-
tags/2.0.6/Codemirror/lib (added)
-
tags/2.0.6/Codemirror/lib/codemirror.css (added)
-
tags/2.0.6/Codemirror/lib/codemirror.js (added)
-
tags/2.0.6/PHPPostCode.js (added)
-
tags/2.0.6/php-code-for-posts.php (added)
-
tags/2.0.6/php-icon.png (added)
-
tags/2.0.6/readme.txt (added)
-
tags/2.0.6/screenshot-1.jpg (added)
-
tags/2.0.6/screenshot-2.jpg (added)
-
tags/2.0.6/style.css (added)
-
tags/2.0.6/templates (added)
-
tags/2.0.6/templates/admin-index-bottom.tpl (added)
-
tags/2.0.6/templates/admin-index-default.tpl (added)
-
tags/2.0.6/templates/admin-index-edit.tpl (added)
-
tags/2.0.6/templates/admin-index-top-edit.tpl (added)
-
tags/2.0.6/templates/admin-index-top.tpl (added)
-
tags/2.0.6/templates/admin-snippet-row.tpl (added)
-
trunk/php-code-for-posts.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
php-code-for-posts/trunk/php-code-for-posts.php
r1368758 r1368991 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. 55 * Version: 2.0.6 6 6 * Author: Jamie Fraser 7 7 * Author uri: http://www.jamiefraser.co.uk/?utm-campaign=PHPCodeForPosts … … 22 22 include('Classes/PhpCodeForPosts.php'); 23 23 24 $plugin_directory = trailingslashit( realpath(__DIR__) );24 $plugin_directory = trailingslashit( dirname( __FILE__ ) ); 25 25 $plugin_web_path = trailingslashit( plugins_url( '', __FILE__ ) ); 26 26 -
php-code-for-posts/trunk/readme.txt
r1368758 r1368991 5 5 Requires at least: 3.3.1 6 6 Tested up to: 4.4.2 7 Stable tag: 2.0. 57 Stable tag: 2.0.6 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 101 101 = 2.0.5 = 102 102 * Removed ? : shorthand ifs 103 = 2.0.6 = 104 * Fixed issue with compatibility with PHP 5.2 103 105 104 106 == Upgrade Notice == … … 126 128 = 2.0.5 = 127 129 * Removed ? : shorthand ifs 130 = 2.0.6 = 131 * Fixed issue with compatibility with PHP 5.2 128 132 129 133 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.