diff options
Diffstat (limited to 'it_html.class')
-rw-r--r-- | it_html.class | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/it_html.class b/it_html.class index afc8d4e..edba038 100644 --- a/it_html.class +++ b/it_html.class @@ -297,7 +297,7 @@ function div($args) if (!is_array($args[0]) && ($class = array_shift($args)) !== null) { array_unshift($args, compact('class')); - ###it::error("deprecated usage of div"); + it::error("deprecated usage of div"); } return $this->_tag("div", $args); @@ -377,7 +377,7 @@ function span($args) if (!is_array($args[0]) && ($class = array_shift($args)) !== null) { array_unshift($args, compact('class')); - ###it::error("deprecated usage of span"); + it::error("deprecated usage of span"); } return $this->_tag("span", $args); |