diff options
author | Urban Müller | 2007-09-04 13:20:45 +0000 |
---|---|---|
committer | Urban Müller | 2007-09-04 13:20:45 +0000 |
commit | a8c1c6d5eae93faea5a6aeff33f8ae56c14e3fa2 (patch) | |
tree | 9b67429370ef3daff422bbb05c82e40cfbe01106 /it_html.class | |
parent | 2fce52c70f5014fc7c144e8ddf027de34e859103 (diff) | |
download | itools-a8c1c6d5eae93faea5a6aeff33f8ae56c14e3fa2.tar.gz itools-a8c1c6d5eae93faea5a6aeff33f8ae56c14e3fa2.tar.bz2 itools-a8c1c6d5eae93faea5a6aeff33f8ae56c14e3fa2.zip |
warnings for deprecated div/span
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); |