diff options
author | Urban Müller | 2023-10-19 16:08:54 +0200 |
---|---|---|
committer | Urban Müller | 2023-10-19 16:08:54 +0200 |
commit | aeb4710c7237f41a6f8eec2beac0b5ce9e31c9e1 (patch) | |
tree | 5ba2147ba6b948b11fa40ef5d0262a289469add2 /it_html.class | |
parent | c55baa3f9c58965190d3b6e138bab7c219c35183 (diff) | |
download | itools-aeb4710c7237f41a6f8eec2beac0b5ce9e31c9e1.tar.gz itools-aeb4710c7237f41a6f8eec2beac0b5ce9e31c9e1.tar.bz2 itools-aeb4710c7237f41a6f8eec2beac0b5ce9e31c9e1.zip |
drop support for C extension
Diffstat (limited to 'it_html.class')
-rw-r--r-- | it_html.class | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/it_html.class b/it_html.class index 716e066..ea3a896 100644 --- a/it_html.class +++ b/it_html.class @@ -25,9 +25,7 @@ /** * Parse an arg array (mixed key=>value pairs and strings) and return it * as array(0 => all numerical args concatenated, 1 => array(key=>value pairs) - * php version if c extension is not loaded */ -if (!function_exists("it_parse_args")) { function it_parse_args($args) { $p = array(); @@ -49,7 +47,6 @@ function it_parse_args($args) return array($data, $p); } -} class it_html |