Changeset 1511525
- Timestamp:
- 10/10/2016 08:02:25 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
web-push-notifications-lite/trunk/em_desktop_notifications_lite.php
r1453338 r1511525 4 4 * Plugin URI: http://pushem.org 5 5 * Description: Push Notifications Lite for your Wordpress website (push notifications works throw pushem.org [our common server]). Free licenses for our Envato customers, free 14 days trial. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: Emrys Forge 8 8 * Author URI: http://emrysforge.com … … 151 151 <label class="label" for="emdn_pushem_source[pushem_source]"><?php _e( 'Choose source', 'emdn' ); ?></label> 152 152 <select name="emdn_pushem_source[pushem_source]" id="hide-meta"> 153 <?php $selected = $pushem_source['pushem_source']; ?> 153 <?php 154 if (!empty($pushem_source['pushem_source'])) { 155 $selected = $pushem_source['pushem_source']; 156 } else { 157 $selected = ''; 158 } 159 ?> 154 160 <?php 155 161 foreach ($result as $key => $value) {
Note: See TracChangeset
for help on using the changeset viewer.