Changeset 404145
- Timestamp:
- 07/03/2011 07:04:15 PM (15 years ago)
- Location:
- flattr/trunk
- Files:
-
- 3 edited
-
flattr.php (modified) (3 diffs)
-
flattr5.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
flattr/trunk/flattr.php
r404118 r404145 3 3 * @package Flattr 4 4 * @author Michael Henke 5 * @version 0.9.25. 15 * @version 0.9.25.2 6 6 Plugin Name: Flattr 7 7 Plugin URI: http://wordpress.org/extend/plugins/flattr/ 8 8 Description: Give your readers the opportunity to Flattr your effort 9 Version: 0.9.25. 19 Version: 0.9.25.2 10 10 Author: Michael Henke 11 11 Author URI: http://allesblog.de/ … … 29 29 30 30 if (version_compare(get_option('flattr_warn_ignore_version'), Flattr::VERSION, '!=')) { 31 $flattr_check['DOMDocument'] = class_exists('DOMDocu emnt');31 $flattr_check['DOMDocument'] = class_exists('DOMDocument'); 32 32 $flattr_check['cURL'] = function_exists('curl_init'); 33 33 $flattr_check['libxml'] = defined('LIBXML_VERSION'); … … 39 39 40 40 function flattrCheckAdminNotice() { 41 42 global $flattr_check; 41 43 echo '<div id="message" class="error">'; 42 44 echo '<div style="float:right"><form method="post">'. -
flattr/trunk/flattr5.php
r404118 r404145 5 5 class Flattr 6 6 { 7 const VERSION = '0.9.25. 1';7 const VERSION = '0.9.25.2'; 8 8 const WP_MIN_VER = '3.0'; 9 9 const API_SCRIPT = 'api.flattr.com/js/0.6/load.js?mode=auto'; -
flattr/trunk/readme.txt
r404118 r404145 37 37 38 38 == Changelog == 39 40 = 0.9.25.2 = 41 * Fix: fixed a typo in the code, thanks to F. Holzhauer 39 42 40 43 = 0.9.25.1 =
Note: See TracChangeset
for help on using the changeset viewer.