Fix for warning message in include\utils\ListViewUtils.php
in include\utils\ListViewUtils.php
change in function decode_html($str)
from if ($_REQUEST['action'] == 'Popup' ||
_REQUEST['action']) &&
_REQUEST['action']) && $_REQUEST['file'] == 'Popup'))
Merge request reports
Activity
Filter activity
Added 1 commit:
- 7fc8cc77 - thanks to @manualgit
674 674 function decode_html($str) { 675 675 global $default_charset; 676 676 // Direct Popup action or Ajax Popup action should be treated the same. 677 if ($_REQUEST['action'] == 'Popup' || $_REQUEST['file'] == 'Popup') 677 if ((isset($_REQUEST['action']) && $_REQUEST['action'] == 'Popup') || (isset($_REQUEST['file']) && $_REQUEST['file'] == 'Popup')) 674 674 function decode_html($str) { 675 675 global $default_charset; 676 676 // Direct Popup action or Ajax Popup action should be treated the same. 677 if ($_REQUEST['action'] == 'Popup' || $_REQUEST['file'] == 'Popup') 677 if ((isset($_REQUEST['action']) && $_REQUEST['action'] == 'Popup') || (isset($_REQUEST['file']) && $_REQUEST['file'] == 'Popup')) @satish.dvnk Any update on this merge?
Thanks @nilay.automatesmb for reminding this
@satish.dvnk this is important as many clients have error logging to file enabled. And if so this creates GBs of log files in just a few days. With error reporting and display on, in Vtiger we get more than 3 MB of data with these repetitive errors.
Please register or sign in to reply