Plugin Directory

Changeset 1749018


Ignore:
Timestamp:
10/19/2017 06:41:08 AM (8 years ago)
Author:
kubi23
Message:

tagged version 5.4.8

Location:
mail-on-update
Files:
8 added
2 edited

Legend:

Unmodified
Added
Removed
  • mail-on-update/trunk/mail-on-update.php

    r1747067 r1749018  
    44Plugin URI: http://www.svenkubiak.de/mail-on-update
    55Description: Sends an eMail notification to one or multiple eMail addresses if new versions of plugins are available.
    6 Version: 5.4.7
     6Version: 5.4.8
    77Author: Sven Kubiak, Matthias Kindler
    88Author URI: https://svenkubiak.de
     
    155155                    $message .= sprintf( __('- Installed: %1$s, Current: %2$s', 'mail-on-update'), $plugins[$pluginfile]['Version'], $update->new_version);
    156156                    $message .= "\n\n";
    157                 }
    158                 else {
     157                }   else {
    159158                    (is_plugin_active($pluginfile)) ? $act = __('active', 'mail-on-update') : $act = __('inactive', 'mail-on-update');
    160159                    $pluginNotVaildated .= "\n".sprintf( __('A new version (%1$s) of %2$s is available. (%3s)', 'mail-on-update'), $update->new_version, $plugins[$pluginfile]['Name'], $act);
    161                 };
     160                }
    162161            }
    163162
     
    170169                if ($pluginNotVaildated != '') {
    171170                    $message.= "\n\n".__('There are also updates available for the plugins below. However, these plugins are of no concern for this notifier and the information is just for completeness.', 'mail-on-update')."\n".$pluginNotVaildated;
    172                 };
     171                }
    173172
    174173                //set mail header for notification message
     
    180179                $subject = sprintf(__('[%s] Plugin Update Notification','mail-on-update'), $blogname);
    181180                wp_mail($this->mailonupdate_listOfCommaSeparatedRecipients(), $subject, $message, $headers);
    182 
    183                 if (DEBUG) {
    184                         echo "<!-- MOU: Sending plugin update notification -->";
    185                 }
    186             };
     181            }
    187182
    188183            //set timestamp of last update check
  • mail-on-update/trunk/readme.txt

    r1747067 r1749018  
    22Contributors: kubi23
    33Tested up to: 4.8.2
    4 Stable tag: 5.4.7
     4Stable tag: 5.4.8
    55Requires at least: 3.0
    66Tags: wordpress, plugin, mail, e-mail, notification, update, updates, notifications, mail-on-update, email, plugins, inform, version, versions
     
    3030
    3131== Changelog ==
     32
     33= 5.4.8 =
     34* Very minor cleanup
    3235
    3336= 5.4.7 =
Note: See TracChangeset for help on using the changeset viewer.