Changeset 1115824
- Timestamp:
- 03/19/2015 07:24:57 AM (11 years ago)
- Location:
- shortcode-exec-php
- Files:
-
- 6 edited
- 1 copied
-
tags/1.52 (copied) (copied from shortcode-exec-php/trunk)
-
tags/1.52/readme.txt (modified) (3 diffs)
-
tags/1.52/shortcode-exec-php-class.php (modified) (2 diffs)
-
tags/1.52/shortcode-exec-php.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/shortcode-exec-php-class.php (modified) (2 diffs)
-
trunk/shortcode-exec-php.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shortcode-exec-php/tags/1.52/readme.txt
r1111444 r1115824 3 3 Tags: admin, shortcode, run, php, eval, execute, exec, code, post, posts, page, pages, comment, comments, sidebar, widget, widgets, rss, feed, feeds, AJAX, wpmu, tinymce 4 4 Requires at least: 3.1 5 Tested up to: 3.8.16 Stable tag: 1.5 15 Tested up to: 4.1.1 6 Stable tag: 1.52 7 7 8 8 Execute arbitrary, reusable PHP code in posts, pages, comments, widgets and RSS feeds using shortcodes in a safe and easy way … … 121 121 * You can download the development version [here](http://downloads.wordpress.org/plugin/shortcode-exec-php.zip) 122 122 123 = 1.52 = 124 * Fixed inserting shortcode 125 123 126 = 1.51 = 124 127 * Made pro feature free … … 364 367 == Upgrade Notice == 365 368 369 = 1.52 = 370 Fixed inserting shortcode 371 366 372 = 1.51 = 367 373 Made pro feature free -
shortcode-exec-php/tags/1.52/shortcode-exec-php-class.php
r882256 r1115824 3 3 /* 4 4 Support class Shortcode Exec PHP Plugin 5 Copyright (c) 2010-201 4by Marcel Bokhorst5 Copyright (c) 2010-2015 by Marcel Bokhorst 6 6 */ 7 7 … … 1189 1189 $('#scep-tinymce-form').submit(function() { 1190 1190 if (window.tinyMCE) { 1191 window.tinyMCE.execInstanceCommand('content', 'mceInsertContent', false, '[' + $('#scep-tinymce-shortcode').val() + ']'); 1191 if (tinyMCE.majorVersion >= '4') 1192 window.tinyMCE.execCommand('mceInsertContent', false, '[' + $('#scep-tinymce-shortcode').val() + ']'); 1193 else 1194 window.tinyMCE.execInstanceCommand('content', 'mceInsertContent', false, '[' + $('#scep-tinymce-shortcode').val() + ']'); 1192 1195 tinyMCEPopup.editor.execCommand('mceRepaint'); 1193 1196 tinyMCEPopup.close(); -
shortcode-exec-php/tags/1.52/shortcode-exec-php.php
r882266 r1115824 4 4 Plugin URI: http://wordpress.org/extend/plugins/shortcode-exec-php/ 5 5 Description: Execute arbitrary, reusable PHP code in posts, pages, comments, widgets and RSS feeds using shortcodes in a safe and easy way 6 Version: 1.5 16 Version: 1.52 7 7 Author: Marcel Bokhorst 8 8 Author URI: http://blog.bokhorst.biz/about/ … … 10 10 11 11 /* 12 Copyright 2010-201 4Marcel Bokhorst12 Copyright 2010-2015 Marcel Bokhorst 13 13 14 14 This program is free software; you can redistribute it and/or modify -
shortcode-exec-php/trunk/readme.txt
r1111444 r1115824 3 3 Tags: admin, shortcode, run, php, eval, execute, exec, code, post, posts, page, pages, comment, comments, sidebar, widget, widgets, rss, feed, feeds, AJAX, wpmu, tinymce 4 4 Requires at least: 3.1 5 Tested up to: 3.8.16 Stable tag: 1.5 15 Tested up to: 4.1.1 6 Stable tag: 1.52 7 7 8 8 Execute arbitrary, reusable PHP code in posts, pages, comments, widgets and RSS feeds using shortcodes in a safe and easy way … … 121 121 * You can download the development version [here](http://downloads.wordpress.org/plugin/shortcode-exec-php.zip) 122 122 123 = 1.52 = 124 * Fixed inserting shortcode 125 123 126 = 1.51 = 124 127 * Made pro feature free … … 364 367 == Upgrade Notice == 365 368 369 = 1.52 = 370 Fixed inserting shortcode 371 366 372 = 1.51 = 367 373 Made pro feature free -
shortcode-exec-php/trunk/shortcode-exec-php-class.php
r882256 r1115824 3 3 /* 4 4 Support class Shortcode Exec PHP Plugin 5 Copyright (c) 2010-201 4by Marcel Bokhorst5 Copyright (c) 2010-2015 by Marcel Bokhorst 6 6 */ 7 7 … … 1189 1189 $('#scep-tinymce-form').submit(function() { 1190 1190 if (window.tinyMCE) { 1191 window.tinyMCE.execInstanceCommand('content', 'mceInsertContent', false, '[' + $('#scep-tinymce-shortcode').val() + ']'); 1191 if (tinyMCE.majorVersion >= '4') 1192 window.tinyMCE.execCommand('mceInsertContent', false, '[' + $('#scep-tinymce-shortcode').val() + ']'); 1193 else 1194 window.tinyMCE.execInstanceCommand('content', 'mceInsertContent', false, '[' + $('#scep-tinymce-shortcode').val() + ']'); 1192 1195 tinyMCEPopup.editor.execCommand('mceRepaint'); 1193 1196 tinyMCEPopup.close(); -
shortcode-exec-php/trunk/shortcode-exec-php.php
r882266 r1115824 4 4 Plugin URI: http://wordpress.org/extend/plugins/shortcode-exec-php/ 5 5 Description: Execute arbitrary, reusable PHP code in posts, pages, comments, widgets and RSS feeds using shortcodes in a safe and easy way 6 Version: 1.5 16 Version: 1.52 7 7 Author: Marcel Bokhorst 8 8 Author URI: http://blog.bokhorst.biz/about/ … … 10 10 11 11 /* 12 Copyright 2010-201 4Marcel Bokhorst12 Copyright 2010-2015 Marcel Bokhorst 13 13 14 14 This program is free software; you can redistribute it and/or modify
Note: See TracChangeset
for help on using the changeset viewer.