Changeset 520434
- Timestamp:
- 03/18/2012 03:15:26 PM (14 years ago)
- Location:
- lightview-plus/trunk
- Files:
-
- 2 edited
-
lightview-plus.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lightview-plus/trunk/lightview-plus.php
r511333 r520434 233 233 foreach ($default as $k => $v) { 234 234 $i = $this->get_option($k); 235 if( empty($i)) {235 if(is_null($i)) { 236 236 $this->update_option($k, $v); 237 237 } … … 396 396 'lv_border_color' => (string)$_POST['lv_border_color'], 397 397 'lv_controls_type' => (string)$_POST['lv_controls_type'], 398 'lv_overlay' => (bool)(!empty($_POST['lv_overlay'])),398 'lv_overlay' => (bool)(!empty($_POST['lv_overlay'])), 399 399 'lv_overlay_color' => (string)$_POST['lv_overlay_color'], 400 'lv_radius_position' => (string)$_POST['lv_radius_position'],400 'lv_radius_position' => (string)$_POST['lv_radius_position'], 401 401 'lv_shadow' => (bool)(!empty($_POST['lv_shadow'])), 402 402 'lv_shadow_color' => (string)$_POST['lv_shadow_color'], -
lightview-plus/trunk/readme.txt
r511333 r520434 41 41 * [FIX] videos in feeds and mobile will not play automatically again 42 42 * [NEW] plays youtube-nocookie videos 43 * [FIX] disabling of default enabled options is possible again now. Thanks Martin! 43 44 44 45 = 3.1.0 =
Note: See TracChangeset
for help on using the changeset viewer.