We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4697bff commit d21957bCopy full SHA for d21957b
autoload.php
@@ -8,6 +8,11 @@
8
* @package kernel
9
*/
10
11
+// Disable the PHAR stream wrapper as it is insecure
12
+if (in_array('phar', stream_get_wrappers())) {
13
+ stream_wrapper_unregister('phar');
14
+}
15
+
16
// config.php can set the components path like:
17
// ini_set( 'include_path', ini_get( 'include_path' ). ':../ezcomponents/trunk' );
18
// It is also possible to push a custom autoload method to the autoload
0 commit comments