Skip to content

Commit

Permalink
wrong check for flexy:ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
roojs committed Aug 8, 2003
1 parent adebcd7 commit b315f87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Flexy/Compiler/Standard/Tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ function parseAttributeIgnore()

$flexyignore = $_HTML_TEMPLATE_FLEXY_TOKEN['flexyIgnore'];

if ($this->element->getAttribute('FLEXY:IGNORE') !== null) {
if ($this->element->getAttribute('FLEXY:IGNORE') !== false) {
$_HTML_TEMPLATE_FLEXY_TOKEN['flexyIgnore'] = true;
$this->element->clearAttribute('FLEXY:IGNORE');
}
Expand Down Expand Up @@ -562,4 +562,4 @@ function toElement($element) {

}

?>
?>

0 comments on commit b315f87

Please sign in to comment.