Changeset 1253174
- Timestamp:
- 09/25/2015 07:09:16 AM (11 years ago)
- File:
-
- 1 edited
-
callphoner/trunk/callphoner.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
callphoner/trunk/callphoner.php
r1253139 r1253174 221 221 update_option('callphoner_settings', $settings, true); 222 222 223 add_action('admin_notices', function(){ 224 echo '<div class="updated"><p>'.__('Settings saved...', 'callphoner').'</p></div>'; 225 }); 223 add_action('admin_notices', array($this, 'admin_notices')); 226 224 } 225 } 226 227 public function admin_notices() { 228 echo '<div class="updated"><p>'.__('Settings saved...', 'callphoner').'</p></div>'; 227 229 } 228 230 … … 288 290 opacity: 0.9; 289 291 box-shadow: 0 0 2px 2px #e4e4e4; 292 box-sizing: border-box; 293 -wibkit-sizing: border-box; 294 -moz-sizing: border-box; 295 -o-sizing: border-box; 290 296 } 291 297
Note: See TracChangeset
for help on using the changeset viewer.