From 49817ee26aca932522b97f790bc6d56957ca541c Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Tue, 8 Feb 2011 11:23:46 +0000 Subject: improved search page --- .../Application/Controllers/SearchController.php | 30 +++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/h-source/Application/Controllers/SearchController.php b/h-source/Application/Controllers/SearchController.php index 3d65d2c..9633a0e 100644 --- a/h-source/Application/Controllers/SearchController.php +++ b/h-source/Application/Controllers/SearchController.php @@ -128,11 +128,11 @@ class SearchController extends BaseController if (next($lspciArray) !== false) { $item = trim(current($lspciArray)); - if( !preg_match( '/^[a-zA-Z0-9\-\_\.\,\;\:\+\s\(\)\/\[\]\#]+$/i', $item ) ) - { - $flag = false; - break; - } +// if( !preg_match( '/^[a-zA-Z0-9\-\_\.\,\;\:\+\s\(\)\/\[\]\#]+$/i', $item ) ) +// { +// $flag = false; +// break; +// } if( preg_match( '/Class\:(.*)\[(.*)\]/i', $item, $matches ) ) { $temp['className'] = sanitizeAll($matches[1]); @@ -154,11 +154,11 @@ class SearchController extends BaseController if (next($lspciArray) !== false) { $item = trim(current($lspciArray)); - if( !preg_match( '/^[a-zA-Z0-9\-\_\.\,\;\:\+\s\(\)\/\[\]\#]+$/i', $item ) ) - { - $flag = false; - break; - } +// if( !preg_match( '/^[a-zA-Z0-9\-\_\.\,\;\:\+\s\(\)\/\[\]\#]+$/i', $item ) ) +// { +// $flag = false; +// break; +// } if( preg_match( '/Vendor\:(.*)\[(.*)\]/i', $item, $matches ) ) { $temp['vendorName'] = sanitizeAll($matches[1]); @@ -180,11 +180,11 @@ class SearchController extends BaseController if (next($lspciArray) !== false) { $item = trim(current($lspciArray)); - if( !preg_match( '/^[a-zA-Z0-9\-\_\.\,\;\:\+\s\(\)\/\[\]\#]+$/i', $item ) ) - { - $flag = false; - break; - } +// if( !preg_match( '/^[a-zA-Z0-9\-\_\.\,\;\:\+\s\(\)\/\[\]\#]+$/i', $item ) ) +// { +// $flag = false; +// break; +// } if( preg_match( '/Device\:(.*)\[(.*)\]/i', $item, $matches ) ) { $temp['deviceName'] = sanitizeAll($matches[1]); -- cgit v1.2.3