|
@@ -164,9 +164,9 @@ class Database
|
|
|
*/
|
|
|
private function getUrlParam($key, $table, $suffix, $state, $project = '', $input = array())
|
|
|
{
|
|
|
- $index = md5($key . '_' . $project . '_' . $table . '_' . $suffix);
|
|
|
+ $index = md5($key . '_' . $project . '_' . $table . '_' . $suffix . '_' . http_build_query($input));
|
|
|
if (isset($this->param[$index])) {
|
|
|
- //return $this->param[$index];
|
|
|
+ return $this->param[$index];
|
|
|
}
|
|
|
$param = '';
|
|
|
$array = array('project', 'search', 'add', 'list', 'update', 'edit');
|