|
@@ -4059,7 +4059,7 @@ class MainController extends DooController {
|
|
|
}
|
|
|
}
|
|
|
function searchClient() {
|
|
|
- $searchDbInforItem = isset ( $_GET ['searchDbInforItem'] ) ? $_GET ['searchDbInforItem'] : "";
|
|
|
+ $searchDbInforItem = $this->get_args('searchDbInforItem') ? $this->get_args('searchDbInforItem') : "";
|
|
|
|
|
|
if (! empty ( $searchDbInforItem )) {
|
|
|
|
|
@@ -4079,7 +4079,7 @@ class MainController extends DooController {
|
|
|
}
|
|
|
}
|
|
|
function searchCompany() {
|
|
|
- $searchDbInforItem = isset ( $_GET ['searchDbInforItem'] ) ? $_GET ['searchDbInforItem'] : "";
|
|
|
+ $searchDbInforItem = $this->get_args('searchDbInforItem') ? $this->get_args('searchDbInforItem') : "";
|
|
|
|
|
|
if (! empty ( $searchDbInforItem )) {
|
|
|
|
|
@@ -4179,7 +4179,7 @@ class MainController extends DooController {
|
|
|
}
|
|
|
}
|
|
|
function searchLongle() {
|
|
|
- $searchDbInforItem = isset ( $_GET ['searchDbInforItem'] ) ? $_GET ['searchDbInforItem'] : "";
|
|
|
+ $searchDbInforItem = $this->get_args('searchDbInforItem') ? $this->get_args('searchDbInforItem') : "";
|
|
|
|
|
|
if (! empty ( $searchDbInforItem )) {
|
|
|
|