summaryrefslogtreecommitdiff
path: root/ext/tidy/tidy.c
diff options
context:
space:
mode:
authorGuilherme Blanco <guilhermeblanco@hotmail.com>2014-11-22 04:57:55 +0000
committerJulien Pauli <jpauli@php.net>2014-12-12 17:29:54 +0100
commit094d409b3d34c51f49e0121e5ccfe8b2a717aaf6 (patch)
treedb03022fa8f4eda77977af84c45bcc0eb33d9fa0 /ext/tidy/tidy.c
parent5ad01e1d33fc669608f09cc55e0db373b89a7546 (diff)
downloadphp-git-094d409b3d34c51f49e0121e5ccfe8b2a717aaf6.tar.gz
Removed ZEND_ACC_FINAL_CLASS which is unnecessary. This also fixed some currently defined classes as final which were just not being considered as such before.
Diffstat (limited to 'ext/tidy/tidy.c')
-rw-r--r--ext/tidy/tidy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c
index 8ca27d7b9a..23531e9ae3 100644
--- a/ext/tidy/tidy.c
+++ b/ext/tidy/tidy.c
@@ -1037,7 +1037,7 @@ static PHP_MINIT_FUNCTION(tidy)
REGISTER_INI_ENTRIES();
REGISTER_TIDY_CLASS(tidy, doc, NULL, 0);
- REGISTER_TIDY_CLASS(tidyNode, node, NULL, ZEND_ACC_FINAL_CLASS);
+ REGISTER_TIDY_CLASS(tidyNode, node, NULL, ZEND_ACC_FINAL);
tidy_object_handlers_doc.cast_object = tidy_doc_cast_handler;
tidy_object_handlers_node.cast_object = tidy_node_cast_handler;