Changeset 337119
- Timestamp:
- 01/25/2011 05:24:00 PM (15 years ago)
- Location:
- mailchimp-widget/trunk
- Files:
-
- 2 edited
-
mailchimp-widget.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mailchimp-widget/trunk/mailchimp-widget.php
r336415 r337119 5 5 Description: 6 6 Author: James Lafferty 7 Version: 0.7 7 Version: 0.7.1 8 8 Author URI: https://github.com/kalchas 9 9 License: GPL2 … … 26 26 */ 27 27 28 require_once('lib/mcapi.class.php'); 29 require_once('lib/ns_mc_plugin.class.php'); 30 require_once('lib/ns_widget_mailchimp.class.php'); 28 /** 29 * Set up the autoloader. 30 */ 31 32 set_include_path(get_include_path() . PATH_SEPARATOR . realpath(dirname(__FILE__) . '/lib/')); 33 34 spl_autoload_extensions('.class.php'); 35 36 if (! function_exists('buffered_autoloader')) { 37 38 function buffered_autoloader ($c) { 39 40 try { 41 42 spl_autoload($c); 43 44 } catch (Exception $e) { 45 46 $message = $e->getMessage(); 47 48 return $message; 49 50 } 51 52 53 } 54 55 } 56 57 spl_autoload_register('buffered_autoloader'); 31 58 32 59 /** -
mailchimp-widget/trunk/readme.txt
r336415 r337119 41 41 42 42 == Changelog == 43 44 = 0.7.1 = 45 * Restores the original autoloader. 46 43 47 = 0.7 = 44 48 * Added French language support. Thank you to Frederick Marcoux for this contribution! … … 87 91 88 92 == Upgrade Notice == 93 = 0.7.1 = 94 Fixes namespace issue introduced in 0.7. 95 89 96 = 0.7 = 90 97 * Adds French language support. Thank you Frederick Marcoux for the translation.
Note: See TracChangeset
for help on using the changeset viewer.