Changeset 1948079
- Timestamp:
- 09/27/2018 02:01:11 PM (8 years ago)
- Location:
- netreviews/trunk
- Files:
-
- 5 edited
-
api_functions.php (modified) (4 diffs)
-
changelog.txt (modified) (1 diff)
-
functions.php (modified) (2 diffs)
-
netreviews.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
netreviews/trunk/api_functions.php
r1946756 r1948079 80 80 ntav_updateConfig('HELPFULOPTION', $message['enable_helpful_reviews']); 81 81 ntav_updateConfig('MEDIADISPLAY', $message['enable_media']); 82 ntav_updateConfig('SCRIPTFIXE_ALLOWED', $message['display_fixe_widget']);83 ntav_updateConfig('SCRIPTFIXE_POSITION', $message['position_fixe_widget']);84 82 ntav_updateConfig('SCRIPTFLOAT_ALLOWED', $message['display_float_widget']); 85 83 ntav_updateConfig('URLCERTIFICAT', $message['url_certificat']); … … 94 92 ntav_updateConfig('FORBIDDEN_EMAIL', $FORBIDDENEMAIL); 95 93 // Encode le donnee avant le sauvegarde dans le db. 96 $data_fixe = ntav_AV_encode_base64(str_replace(array("\r\n", "\n"), '', stripslashes(str_replace('\"', '"', $message['script_fixe_widget']))));97 ntav_updateConfig('SCRIPTFIXE', $data_fixe);98 94 $data_float = ntav_AV_encode_base64(str_replace(array("\r\n", "\n"), '', stripslashes(str_replace('\"', '"', $message['script_float_widget'])))); 99 95 ntav_updateConfig('SCRIPTFLOAT', $data_float); … … 399 395 'Affichage_Widget_Flottant' => 'SCRIPTFLOAT_ALLOWED', 400 396 'Script_Widget_Flottant' => 'SCRIPTFLOAT', 401 'Affichage_Widget_Fixe' => 'SCRIPTFIXE_ALLOWED',402 'Position_Widget_Fixe' => 'SCRIPTFIXE_POSITION',403 'Script_Widget_Fixe' => 'SCRIPTFIXE',404 397 'Emails_Interdits' => 'FORBIDDEN_EMAIL', 405 398 'Affichage_Etoiles_Listing' => 'OUR_PRODUCT_LIST_RATING', … … 414 407 $var = ($var == 'NULL') ? '' : $var; 415 408 // FIX pour NULL Variable, DATA are saved default with NULL Var 416 // fix for SCRIPTFLOAT && SCRIPTFIXE417 if ($champsname == 'SCRIPTFLOAT' || $champsname == 'SCRIPTFIXE')409 // fix for SCRIPTFLOAT 410 if ($champsname == 'SCRIPTFLOAT') 418 411 $temp[$key] = ntav_AV_decode_base64($var); 419 412 else -
netreviews/trunk/changelog.txt
r1944743 r1948079 1 version : 1.8.1 / date 27/09/2018 2 - Remove widget fixe code 3 4 version : 1.8.0 / date 13/09/2018 5 - Remove rich snippet site and category 6 1 7 version : 1.7.11 / date 21/09/2018 2 8 - Fix specific hooks -
netreviews/trunk/functions.php
r1946756 r1948079 5 5 function ntav_update_version_plugin() 6 6 { 7 ntav_updateValue('MODVERSION', '1.8. 0');7 ntav_updateValue('MODVERSION', '1.8.1'); 8 8 } 9 9 … … 580 580 (9, 'DELAY', NULL), 581 581 (10, 'DISPLAYPRODREVIEWS', NULL), 582 (11, 'SCRIPTFIXE_ALLOWED', NULL),583 (12, 'SCRIPTFIXE_POSITION', NULL),584 582 (13, 'SCRIPTFLOAT_ALLOWED', NULL), 585 583 (14, 'URLCERTIFICAT', NULL), 586 (15, 'SCRIPTFIXE', NULL),587 584 (16, 'SCRIPTFLOAT', NULL), 588 585 (17, 'MODVERSION', NULL), -
netreviews/trunk/netreviews.php
r1946756 r1948079 8 8 * Description: We provide you with a solution that enables you to collect customer reviews about your website and products which will show on your 9 9 * website and on a attestation which will increase the credibility of published reviews. 10 * Version: 1.8. 010 * Version: 1.8.1 11 11 * Author: NetReviews SAS <contact@avis-verifies.com> 12 12 * Author URI: www.avis-verifies.com -
netreviews/trunk/readme.txt
r1946756 r1948079 57 57 58 58 == Changelog == 59 60 version : 1.8.1 / date 27/09/2018 61 - Remove widget fixe code 62 59 63 version : 1.8.0 / date 13/09/2018 60 64 - Remove rich snippet site and category
Note: See TracChangeset
for help on using the changeset viewer.