Plugin Directory

Changeset 1115824


Ignore:
Timestamp:
03/19/2015 07:24:57 AM (11 years ago)
Author:
M66B
Message:

1.52 release

Location:
shortcode-exec-php
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • shortcode-exec-php/tags/1.52/readme.txt

    r1111444 r1115824  
    33Tags: admin, shortcode, run, php, eval, execute, exec, code, post, posts, page, pages, comment, comments, sidebar, widget, widgets, rss, feed, feeds, AJAX, wpmu, tinymce
    44Requires at least: 3.1
    5 Tested up to: 3.8.1
    6 Stable tag: 1.51
     5Tested up to: 4.1.1
     6Stable tag: 1.52
    77
    88Execute arbitrary, reusable PHP code in posts, pages, comments, widgets and RSS feeds using shortcodes in a safe and easy way
     
    121121* You can download the development version [here](http://downloads.wordpress.org/plugin/shortcode-exec-php.zip)
    122122
     123= 1.52 =
     124* Fixed inserting shortcode
     125
    123126= 1.51 =
    124127* Made pro feature free
     
    364367== Upgrade Notice ==
    365368
     369= 1.52 =
     370Fixed inserting shortcode
     371
    366372= 1.51 =
    367373Made pro feature free
  • shortcode-exec-php/tags/1.52/shortcode-exec-php-class.php

    r882256 r1115824  
    33/*
    44    Support class Shortcode Exec PHP Plugin
    5     Copyright (c) 2010-2014 by Marcel Bokhorst
     5    Copyright (c) 2010-2015 by Marcel Bokhorst
    66*/
    77
     
    11891189                    $('#scep-tinymce-form').submit(function() {
    11901190                        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() + ']');
    11921195                            tinyMCEPopup.editor.execCommand('mceRepaint');
    11931196                            tinyMCEPopup.close();
  • shortcode-exec-php/tags/1.52/shortcode-exec-php.php

    r882266 r1115824  
    44Plugin URI: http://wordpress.org/extend/plugins/shortcode-exec-php/
    55Description: Execute arbitrary, reusable PHP code in posts, pages, comments, widgets and RSS feeds using shortcodes in a safe and easy way
    6 Version: 1.51
     6Version: 1.52
    77Author: Marcel Bokhorst
    88Author URI: http://blog.bokhorst.biz/about/
     
    1010
    1111/*
    12     Copyright 2010-2014 Marcel Bokhorst
     12    Copyright 2010-2015 Marcel Bokhorst
    1313
    1414    This program is free software; you can redistribute it and/or modify
  • shortcode-exec-php/trunk/readme.txt

    r1111444 r1115824  
    33Tags: admin, shortcode, run, php, eval, execute, exec, code, post, posts, page, pages, comment, comments, sidebar, widget, widgets, rss, feed, feeds, AJAX, wpmu, tinymce
    44Requires at least: 3.1
    5 Tested up to: 3.8.1
    6 Stable tag: 1.51
     5Tested up to: 4.1.1
     6Stable tag: 1.52
    77
    88Execute arbitrary, reusable PHP code in posts, pages, comments, widgets and RSS feeds using shortcodes in a safe and easy way
     
    121121* You can download the development version [here](http://downloads.wordpress.org/plugin/shortcode-exec-php.zip)
    122122
     123= 1.52 =
     124* Fixed inserting shortcode
     125
    123126= 1.51 =
    124127* Made pro feature free
     
    364367== Upgrade Notice ==
    365368
     369= 1.52 =
     370Fixed inserting shortcode
     371
    366372= 1.51 =
    367373Made pro feature free
  • shortcode-exec-php/trunk/shortcode-exec-php-class.php

    r882256 r1115824  
    33/*
    44    Support class Shortcode Exec PHP Plugin
    5     Copyright (c) 2010-2014 by Marcel Bokhorst
     5    Copyright (c) 2010-2015 by Marcel Bokhorst
    66*/
    77
     
    11891189                    $('#scep-tinymce-form').submit(function() {
    11901190                        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() + ']');
    11921195                            tinyMCEPopup.editor.execCommand('mceRepaint');
    11931196                            tinyMCEPopup.close();
  • shortcode-exec-php/trunk/shortcode-exec-php.php

    r882266 r1115824  
    44Plugin URI: http://wordpress.org/extend/plugins/shortcode-exec-php/
    55Description: Execute arbitrary, reusable PHP code in posts, pages, comments, widgets and RSS feeds using shortcodes in a safe and easy way
    6 Version: 1.51
     6Version: 1.52
    77Author: Marcel Bokhorst
    88Author URI: http://blog.bokhorst.biz/about/
     
    1010
    1111/*
    12     Copyright 2010-2014 Marcel Bokhorst
     12    Copyright 2010-2015 Marcel Bokhorst
    1313
    1414    This program is free software; you can redistribute it and/or modify
Note: See TracChangeset for help on using the changeset viewer.