Changeset 211362
- Timestamp:
- 12/14/2023 07:23:03 AM (2 years ago)
- Location:
- oceanwp/3.5.3
- Files:
-
- 7 edited
- 1 copied
- . (copied) (copied from oceanwp/3.5.2)
- README.md (modified) (1 diff)
- changelog.md (modified) (1 diff)
- inc/customizer/controls/multiple-select/class-control-multiple-select.php (modified) (1 diff)
- languages/oceanwp.pot (modified) (2 diffs)
- readme.txt (modified) (1 diff)
- sass/style.scss (modified) (1 diff)
- style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
oceanwp/3.5.3/README.md
r211019 r211362 5 5 **Tested up to:** WordPress 6.4.2 6 6 ======= 7 **Stable tag:** 3.5. 27 **Stable tag:** 3.5.3 8 8 **Requires PHP:** 7.2 9 9 **License:** GPLv2 or later -
oceanwp/3.5.3/changelog.md
r211019 r211362 1 1 # OceanWP Changelog 2 3 ### _2023.12.14_ - 3.5.3 4 - **Fixed**:: Compatibility: PHP 8.1+: Customizer not loading due to multi-select error. 2 5 3 6 ### _2023.12.11_ - 3.5.2 -
oceanwp/3.5.3/inc/customizer/controls/multiple-select/class-control-multiple-select.php
r211019 r211362 65 65 } 66 66 67 public function render_content() {68 if (empty($this->choices)) {69 return;70 }67 public function render_content() { 68 if (empty($this->choices)) { 69 return; 70 } 71 71 72 ?>73 <label>74 <span class="customize-control-title"><?php echo esc_html($this->label); ?></span>75 <select <?php $this->link(); ?> multiple="multiple" style="height: 100%;">76 <?php77 foreach ($this->choices as $value => $label) {78 $selected = in_array($value,$this->value()) ? selected(1, 1, false) : '';79 echo '<option value="' . esc_attr($value) . '"' . $selected . '>' . esc_html($label) . '</option>';80 }81 ?>82 </select>83 </label>84 <?php85 }72 ?> 73 <label> 74 <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> 75 <select <?php $this->link(); ?> multiple="multiple" style="height: 100%;"> 76 <?php 77 foreach ($this->choices as $value => $label) { 78 $selected = in_array($value, (array) $this->value()) ? selected(1, 1, false) : ''; 79 echo '<option value="' . esc_attr($value) . '"' . $selected . '>' . esc_html($label) . '</option>'; 80 } 81 ?> 82 </select> 83 </label> 84 <?php 85 } 86 86 87 87 /** -
oceanwp/3.5.3/languages/oceanwp.pot
r211019 r211362 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: OceanWP 3.5. 2\n"5 "Project-Id-Version: OceanWP 3.5.3\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/oceanwp\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023-12-1 1T03:42:23+00:00\n"12 "POT-Creation-Date: 2023-12-14T06:20:47+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.8.1\n" -
oceanwp/3.5.3/readme.txt
r211019 r211362 2 2 Contributors: oceanwp 3 3 Tested up to: 6.4.2 4 Stable tag: 3.5. 24 Stable tag: 3.5.3 5 5 Requires PHP: 7.2 6 6 License: GPLv2 or later -
oceanwp/3.5.3/sass/style.scss
r211019 r211362 3 3 * Theme Name: OceanWP 4 4 * Text Domain: oceanwp 5 * Version: 3.5. 25 * Version: 3.5.3 6 6 * Tested up to: 6.4.2 7 7 * Requires at least: 5.6 -
oceanwp/3.5.3/style.css
r211019 r211362 2 2 * Theme Name: OceanWP 3 3 * Text Domain: oceanwp 4 * Version: 3.5. 24 * Version: 3.5.3 5 5 * Tested up to: 6.4.2 6 6 * Requires at least: 5.6
Note: See TracChangeset for help on using the changeset viewer.