diff options
-rw-r--r-- | db_table.class | 2 | ||||
-rw-r--r-- | html.class | 2 | ||||
-rw-r--r-- | itjs.class | 2 | ||||
-rw-r--r-- | url.class | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/db_table.class b/db_table.class index 0ab25da..e38ecec 100644 --- a/db_table.class +++ b/db_table.class @@ -278,7 +278,7 @@ function dump_html($tableargs="", $sqlwhere="", $c_fields="", $c_descriptions="" if ($default_order == "") $default_order = $fields[0]; - if (!in_array(it::replace(' DESC$' => "", $_REQUEST[$table_sort]), $fields)) + if (!in_array(it::replace(array(' DESC$' => ""), $_REQUEST[$table_sort]), $fields)) $_REQUEST[$table_sort] = $default_order; $sql = "SELECT $c_fields FROM $this->name"; @@ -235,7 +235,7 @@ function span($args) function sanitize($html) { $result = ""; - $html = it::replace('[\0\n\r\s]+' => " ", $html); + $html = it::replace(array('[\0\n\r\s]+' => " "), $html); $urlpattern = 'https?://[^">]+'; if ($tag = it::match("(.*)<(div|p|i|b)[^>]*>(.*?)</\\2>(.*)", $html)) @@ -35,7 +35,7 @@ function send_headers() */ function serialize($values) { - if ($callback = it::replace('[^\w.]' => "", $_REQUEST['itjs_call'])) + if ($callback = it::replace(array('[^\w.]' => ""), $_REQUEST['itjs_call'])) { $header = "<script type='text/javascript'>$callback("; $footer = "," . intval($_REQUEST['itjs_callid']) . ")</script>"; @@ -561,7 +561,7 @@ function _params($params, $keys = null) foreach (it_url::_params($params[$key]) as $value) { if (strlen($value)) - $result[] = it::replace('^([^=\[]*)' => $key . '[$1]', $value); + $result[] = it::replace(array('^([^=\[]*)' => $key . '[$1]'), $value); } } else if (strlen($params[$key])) |