Changeset 2362053
- Timestamp:
- 08/15/2020 06:52:28 PM (6 years ago)
- Location:
- robera/trunk
- Files:
-
- 3 edited
-
core/recommender-admin.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
recommender.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
robera/trunk/core/recommender-admin.php
r2361704 r2362053 48 48 $data = $request->get_body_params(); 49 49 if (is_array($data)) { 50 $className = sanitize_html_class($data["rel_section_class"]); 50 $classNames = explode(" ", $data["rel_section_class"]); 51 $arr = []; 52 for ($i=0; $i < sizeof($classNames); $i++){ 53 $arr[$i] = sanitize_html_class($classNames[$i]); 54 } 55 $className = join(" ",$arr); 51 56 $checked = isset($data["related"]); 52 57 update_option(RecommenderPlugin::$RECOMMEND_ON_RELATED_PRODUCTS_OPTION_NAME, $checked); -
robera/trunk/readme.txt
r2361885 r2362053 4 4 License: GPLv2 or later 5 5 License URI: https://www.gnu.org/licenses/gpl-2.0.html 6 Stable tag: 1.0. 26 Stable tag: 1.0.3 7 7 Tested up to: 5.4.2 8 8 -
robera/trunk/recommender.php
r2361885 r2362053 12 12 * Description: This Plugins help you interact with your WooCommerce users smarter by recommend products and related-products to them according to their preferences. 13 13 * Text Domain: robera-recommender 14 * Version: 1.0. 214 * Version: 1.0.3 15 15 */ 16 16
Note: See TracChangeset
for help on using the changeset viewer.