summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrban Müller2007-09-04 13:20:45 +0000
committerUrban Müller2007-09-04 13:20:45 +0000
commita8c1c6d5eae93faea5a6aeff33f8ae56c14e3fa2 (patch)
tree9b67429370ef3daff422bbb05c82e40cfbe01106
parent2fce52c70f5014fc7c144e8ddf027de34e859103 (diff)
downloaditools-a8c1c6d5eae93faea5a6aeff33f8ae56c14e3fa2.tar.gz
itools-a8c1c6d5eae93faea5a6aeff33f8ae56c14e3fa2.tar.bz2
itools-a8c1c6d5eae93faea5a6aeff33f8ae56c14e3fa2.zip
warnings for deprecated div/span
-rw-r--r--it_html.class4
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);