Post Snippets - Version 2.2.3

Version Description

Download this release

Release Info

Developer artstorm
Plugin Icon 128x128 Post Snippets
Version 2.2.3
Comparing to
See all releases

Code changes from version 2.2.2 to 2.2.3

lang/post-snippets.pot CHANGED
@@ -8,7 +8,7 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2013-05-10 00:14+0700\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
8
  msgstr ""
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2013-05-11 13:18+0700\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
lib/PostSnippets/WPEditor.php CHANGED
@@ -118,12 +118,12 @@ class PostSnippets_WPEditor
118
  echo "\n<!-- START: Add QuickTag button for Post Snippets -->\n";
119
  ?>
120
  <script type="text/javascript" charset="utf-8">
121
- if(typeof QTags != 'undefined'){
122
- QTags.addButton('post_snippets_id', 'Post Snippets', qt_post_snippets);
123
  function qt_post_snippets() {
124
  post_snippets_caller = 'html';
125
  jQuery("#post-snippets-dialog").dialog("open");
126
  }
 
127
  }
128
  </script>
129
  <?php
118
  echo "\n<!-- START: Add QuickTag button for Post Snippets -->\n";
119
  ?>
120
  <script type="text/javascript" charset="utf-8">
121
+ if (typeof QTags != 'undefined') {
 
122
  function qt_post_snippets() {
123
  post_snippets_caller = 'html';
124
  jQuery("#post-snippets-dialog").dialog("open");
125
  }
126
+ QTags.addButton('post_snippets_id', 'Post Snippets', qt_post_snippets);
127
  }
128
  </script>
129
  <?php
post-snippets.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://johansteen.se/code/post-snippets/
5
  Description: Build a library with snippets of HTML, PHP code or reoccurring text that you often use in your posts. Variables to replace parts of the snippet on insert can be used. The snippets can be inserted as-is or as shortcodes.
6
  Author: Johan Steen
7
  Author URI: http://johansteen.se/
8
- Version: 2.2.2
9
  License: GPLv2 or later
10
  Text Domain: post-snippets
11
 
5
  Description: Build a library with snippets of HTML, PHP code or reoccurring text that you often use in your posts. Variables to replace parts of the snippet on insert can be used. The snippets can be inserted as-is or as shortcodes.
6
  Author: Johan Steen
7
  Author URI: http://johansteen.se/
8
+ Version: 2.2.3
9
  License: GPLv2 or later
10
  Text Domain: post-snippets
11
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://johansteen.se/donate/
4
  Tags: post, admin, snippet, shortcode, html, custom, page, dynamic, editor, php, code
5
  Requires at least: 3.3
6
  Tested up to: 3.5.1
7
- Stable tag: 2.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -117,6 +117,9 @@ Contributions are appreciated and encouraged.
117
 
118
  == Changelog ==
119
 
 
 
 
120
  = Version 2.2.2 - 10 May 2013 =
121
  * The Post Snippets buttons now works everywhere there is a wp_editor present
122
  and not only on post/page edit screens.
4
  Tags: post, admin, snippet, shortcode, html, custom, page, dynamic, editor, php, code
5
  Requires at least: 3.3
6
  Tested up to: 3.5.1
7
+ Stable tag: 2.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
117
 
118
  == Changelog ==
119
 
120
+ = Version 2.2.3 - 11 May 2013 =
121
+ * Fixes issue with the QuickTag button not being displayed in Firefox.
122
+
123
  = Version 2.2.2 - 10 May 2013 =
124
  * The Post Snippets buttons now works everywhere there is a wp_editor present
125
  and not only on post/page edit screens.