summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-04-10 15:24:57 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-04-10 15:24:57 +0200
commit6328204053b26585cc0a590815f912fb8b153f41 (patch)
treee9f57e9c01c90231b0e312018c1d67170af7e33a
parentd24dcfa4dba490512e3d417c71c0bb2c02e2881d (diff)
Php::dl() now also checks the extension_dir
-rw-r--r--zend/module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zend/module.h b/zend/module.h
index 4fa6bce..bb36810 100644
--- a/zend/module.h
+++ b/zend/module.h
@@ -71,7 +71,7 @@ public:
ExtensionPath path(module TSRMLS_CC);
// load the module
- _handle = DL_LOAD(module);
+ _handle = DL_LOAD(path);
// handle should be valid
if (!_handle) return;