diff --git a/serendipity_event_userprofiles/ChangeLog b/serendipity_event_userprofiles/ChangeLog index e73b1418..290e454c 100644 --- a/serendipity_event_userprofiles/ChangeLog +++ b/serendipity_event_userprofiles/ChangeLog @@ -1,3 +1,5 @@ +0.31.2: Add missing English language constant for plugin_userprofiles_birthdays. + 0.31: Iconfont a11y fix (yellowled) 0.30: Adapt backend to 2.x (yellowled) diff --git a/serendipity_event_userprofiles/lang_en.inc.php b/serendipity_event_userprofiles/lang_en.inc.php index fe487901..afa9dbb9 100644 --- a/serendipity_event_userprofiles/lang_en.inc.php +++ b/serendipity_event_userprofiles/lang_en.inc.php @@ -80,6 +80,7 @@ @define('PLUGIN_USERPROFILES_GRAVATAR_DEFAULT_DESC', 'Specifies the location of a graphic to display if a user doesn\'t have a Gravatar.'); @define('PLUGIN_USERPROFILES_BIRTHDAYSNAME', 'Birthdays of users'); +@define('PLUGIN_USERPROFILES_BIRTHDAYSNAME_DESCRIPTION', 'Birthdays of users'); @define('PLUGIN_USERPROFILES_BIRTHDAYTITLE', 'Birthdays'); @define('PLUGIN_USERPROFILES_BIRTHDAYTITLE_DESCRIPTION', 'Show when the users have the next birthday.'); @define('PLUGIN_USERPROFILES_BIRTHDAYTITLE_DEFAULT', 'birthdays'); diff --git a/serendipity_event_userprofiles/serendipity_event_userprofiles.php b/serendipity_event_userprofiles/serendipity_event_userprofiles.php index d4207d78..82e20c85 100755 --- a/serendipity_event_userprofiles/serendipity_event_userprofiles.php +++ b/serendipity_event_userprofiles/serendipity_event_userprofiles.php @@ -97,7 +97,7 @@ class serendipity_event_userprofiles extends serendipity_event { 'genpage' => true )); $propbag->add('author', 'Garvin Hicking, Falk Doering'); - $propbag->add('version', '0.31.1'); + $propbag->add('version', '0.31.2'); $propbag->add('requirements', array( 'serendipity' => '2.0', 'smarty' => '2.6.7', diff --git a/serendipity_event_userprofiles/serendipity_plugin_userprofiles_birthdays.php b/serendipity_event_userprofiles/serendipity_plugin_userprofiles_birthdays.php index 4bf3396d..431ed5db 100644 --- a/serendipity_event_userprofiles/serendipity_plugin_userprofiles_birthdays.php +++ b/serendipity_event_userprofiles/serendipity_plugin_userprofiles_birthdays.php @@ -20,7 +20,7 @@ class serendipity_plugin_userprofiles_birthdays extends serendipity_plugin { $propbag->add('description', PLUGIN_USERPROFILES_BIRTHDAYSNAME_DESCRIPTION); $propbag->add('author', 'Falk Doering'); $propbag->add('stackable', false); - $propbag->add('version', '0.3'); + $propbag->add('version', '0.3.1'); $propbag->add('configuration', array('title', 'number')); $propbag->add('requirements', array( 'serendipity' => '0.8', diff --git a/serendipity_plugin_flickr/ChangeLog b/serendipity_plugin_flickr/ChangeLog index d282a8d8..11a9c75d 100644 --- a/serendipity_plugin_flickr/ChangeLog +++ b/serendipity_plugin_flickr/ChangeLog @@ -1,3 +1,4 @@ +1.09.2: Fix constructors for PHP 7. 1.09.1: Translation fixes (German). 1.08: Upgraded phpFlickr library 1.07: Added an option to shuffle the phpFlickr return set, patch by artodeto diff --git a/serendipity_plugin_flickr/phpFlickr/phpFlickr.php b/serendipity_plugin_flickr/phpFlickr/phpFlickr.php index d231e151..3f18a919 100644 --- a/serendipity_plugin_flickr/phpFlickr/phpFlickr.php +++ b/serendipity_plugin_flickr/phpFlickr/phpFlickr.php @@ -58,7 +58,7 @@ if ( !class_exists('phpFlickr') ) { */ var $max_cache_rows = 1000; - function phpFlickr ($api_key, $secret = NULL, $die_on_error = false) { + function __construct ($api_key, $secret = NULL, $die_on_error = false) { //The API Key must be set before any calls can be made. You can //get your own at https://www.flickr.com/services/api/misc.api_keys.html $this->api_key = $api_key; @@ -1686,7 +1686,7 @@ if ( !class_exists('phpFlickr_pager') ) { var $total = null, $page = 0, $pages = null, $photos, $_extra = null; - function phpFlickr_pager($phpFlickr, $method = null, $args = null, $per_page = 30) { + function __construct($phpFlickr, $method = null, $args = null, $per_page = 30) { $this->per_page = $per_page; $this->method = $method; $this->args = $args; diff --git a/serendipity_plugin_flickr/serendipity_plugin_flickr.php b/serendipity_plugin_flickr/serendipity_plugin_flickr.php index ec2b9551..0fd21c11 100644 --- a/serendipity_plugin_flickr/serendipity_plugin_flickr.php +++ b/serendipity_plugin_flickr/serendipity_plugin_flickr.php @@ -28,7 +28,7 @@ class serendipity_plugin_flickr extends serendipity_plugin { 'smarty' => '2.6.9', 'php' => '4.3.0' )); - $propbag->add('version', '1.09.1'); + $propbag->add('version', '1.09.2'); $propbag->add('configuration', array( 'title', 'email', diff --git a/serendipity_plugin_flickrbadge/ChangeLog b/serendipity_plugin_flickrbadge/ChangeLog index 011a203b..e0b487ab 100644 --- a/serendipity_plugin_flickrbadge/ChangeLog +++ b/serendipity_plugin_flickrbadge/ChangeLog @@ -1,3 +1,8 @@ +0.13.1: +----- + * Fix serendipity_plugin_flickrbadge() constructor + for PHP 7. + 0.13: ----- * Use serendipity_request_url() diff --git a/serendipity_plugin_flickrbadge/plugin.inc.php b/serendipity_plugin_flickrbadge/plugin.inc.php index 07dce115..052a9143 100644 --- a/serendipity_plugin_flickrbadge/plugin.inc.php +++ b/serendipity_plugin_flickrbadge/plugin.inc.php @@ -57,7 +57,7 @@ class serendipity_plugin_flickrbadge 'flickr_username')); $propbag->add('stackable', true); $propbag->add('requirements', array('php' => '5.1', 'serendipity' => '0.9')); - $propbag->add('groups', array(FRONTEND_EXTERNAL_SERVICES)); + $propbag->add('groups', array('FRONTEND_EXTERNAL_SERVICES')); $propbag->add('author', 'Lars Strojny'); $propbag->add('version', SERENDIPITY_PLUGIN_FLICKRBADGE_VERSION); } diff --git a/serendipity_plugin_flickrbadge/serendipity_plugin_flickrbadge.php b/serendipity_plugin_flickrbadge/serendipity_plugin_flickrbadge.php index 76b4bd9e..4465ba37 100644 --- a/serendipity_plugin_flickrbadge/serendipity_plugin_flickrbadge.php +++ b/serendipity_plugin_flickrbadge/serendipity_plugin_flickrbadge.php @@ -7,9 +7,9 @@ * * @author Lars Strojny */ -@define('SERENDIPITY_PLUGIN_FLICKRBADGE_VERSION', '0.13'); +@define('SERENDIPITY_PLUGIN_FLICKRBADGE_VERSION', '0.13.1'); -if (IN_SERENDIPITY != true) die("Don't hack"); +if (IN_serendipity != true) die("Don't hack"); if (version_compare(phpversion(), '5.1.0', '>=')) { $probelang = dirname(__FILE__) . '/' . $serendipity['charset'] . 'lang_' . $serendipity['lang'] . '.inc.php'; diff --git a/serendipity_plugin_imagesidebar/ChangeLog b/serendipity_plugin_imagesidebar/ChangeLog index 0f38f22c..d1f554d5 100644 --- a/serendipity_plugin_imagesidebar/ChangeLog +++ b/serendipity_plugin_imagesidebar/ChangeLog @@ -1,3 +1,7 @@ +0.100.1: +----- + * Fix PHP warning. + 0.100: ----- * Added option "none" for "Behavior of image link" diff --git a/serendipity_plugin_imagesidebar/serendipity_plugin_imagesidebar.php b/serendipity_plugin_imagesidebar/serendipity_plugin_imagesidebar.php index 88b86857..262deb46 100644 --- a/serendipity_plugin_imagesidebar/serendipity_plugin_imagesidebar.php +++ b/serendipity_plugin_imagesidebar/serendipity_plugin_imagesidebar.php @@ -20,7 +20,7 @@ include dirname(__FILE__) . '/lang_en.inc.php'; class subplug_sidebar { var $changed = false; - function subplug_sidebar ($setting_array = NULL) { + function __construct ($setting_array = NULL) { if (is_array($setting_array)) { foreach ($setting_array as $name => $value) { $this->value_array[$name] = $value; @@ -75,7 +75,7 @@ class serendipity_plugin_imagesidebar extends serendipity_plugin { $propbag->add('description', PLUGIN_SIDEBAR_IMAGESIDEBAR_DESC); $propbag->add('stackable', true); $propbag->add('author', 'Andrew Brown (Menalto code), Matthew Groeninger (Unified/Media Lib. Code), Stefan Lange-Hegermann (Zooomr Code), Matthew Maude (Coppermine code)'); - $propbag->add('version', '0.100'); + $propbag->add('version', '0.100.1'); $propbag->add('license', 'BSD'); $propbag->add('requirements', array( 'serendipity' => '0.8',