|
@@ 180-182 (lines=3) @@
|
| 177 |
|
$table = $this->SecureTableToBeUpdated(); |
| 178 |
|
$field = $this->SecureFieldToBeUpdated(); |
| 179 |
|
$where = ''; |
| 180 |
|
if (isset($this->requestParams["where"]) && $this->requestParams["where"]) { |
| 181 |
|
$where = urldecode($this->requestParams["where"]); |
| 182 |
|
} |
| 183 |
|
$sort = ''; |
| 184 |
|
if (isset($this->requestParams["sort"]) && $this->requestParams["sort"]) { |
| 185 |
|
$sort = urldecode($this->requestParams["sort"]); |
|
@@ 184-186 (lines=3) @@
|
| 181 |
|
$where = urldecode($this->requestParams["where"]); |
| 182 |
|
} |
| 183 |
|
$sort = ''; |
| 184 |
|
if (isset($this->requestParams["sort"]) && $this->requestParams["sort"]) { |
| 185 |
|
$sort = urldecode($this->requestParams["sort"]); |
| 186 |
|
} |
| 187 |
|
$titleField = 'Title'; |
| 188 |
|
if (isset($this->requestParams["titlefield"]) && $this->requestParams["titlefield"]) { |
| 189 |
|
$titleField = urldecode($this->requestParams["titlefield"]); |