summaryrefslogtreecommitdiff
path: root/ext/tidy
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2005-08-12 14:08:28 +0000
committerSebastian Bergmann <sebastian@php.net>2005-08-12 14:08:28 +0000
commit52b001cc05fa1fb085aca9189a108d7029e9c463 (patch)
tree0d5070c5f24f817647ed245fd6af4409498f3431 /ext/tidy
parent3aad9e2048217f0161f6a9fb50ac334f44d8fcc1 (diff)
downloadphp-git-52b001cc05fa1fb085aca9189a108d7029e9c463.tar.gz
ZTS fixes.
Diffstat (limited to 'ext/tidy')
-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 bfb844633e..655e278114 100644
--- a/ext/tidy/tidy.c
+++ b/ext/tidy/tidy.c
@@ -932,7 +932,7 @@ PHP_MINIT_FUNCTION(tidy)
REGISTER_TIDY_CLASS(tidy, doc, NULL, 0);
REGISTER_TIDY_CLASS(tidyNode, node, NULL, ZEND_ACC_FINAL_CLASS);
/* no exceptions for now..
- REGISTER_TIDY_CLASS(tidyException, exception, zend_exception_get_default());
+ REGISTER_TIDY_CLASS(tidyException, exception, zend_exception_get_default(TSRMLS_C));
*/
tidy_object_handlers_doc.get_class_entry = tidy_get_ce_doc;
tidy_object_handlers_node.get_class_entry = tidy_get_ce_node;