PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.9.5
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.9.5
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | classes/Visualizer/Render/Library.php +1 -4 3.9.43.9.5 View file →
@@ -215,12 +215,9 @@
215 215 * @access private
216 216 */
217 217 private function _renderLibrary() {
218 218 // Added by Ash/Upwork
219 - $filterBy = null;
220 - if ( isset( $_GET['s'] ) && strlen( $_GET['s'] ) > 0 ) {
221 - $filterBy = filter_input( INPUT_GET, 's', FILTER_SANITIZE_STRING );
222 - }
219 + $filterBy = ! empty( $_GET['s'] ) ? sanitize_text_field( wp_unslash( $_GET['s'] ) ) : null; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
223 220 // Added by Ash/Upwork
224 221 echo $this->custom_css;
225 222 echo '<div id="visualizer-types" class="visualizer-clearfix">';
226 223 echo '<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><symbol id="list-icon" fill="currentColor"><path d="M8 0C3.58 0 0 3.58 0 8C0 12.42 3.58 16 8 16C12.42 16 16 12.42 16 8C16 3.58 12.42 0 8 0ZM7.385 12.66H6.045L2.805 8.12L4.146 6.87L6.715 9.27L11.856 3.339L13.196 4.279L7.385 12.66Z"/></symbol></svg>';