diff --git a/wordpress/plugins/owark/owark.php b/wordpress/plugins/owark/owark.php index 11c8e7a..f60ad77 100644 --- a/wordpress/plugins/owark/owark.php +++ b/wordpress/plugins/owark/owark.php @@ -132,8 +132,8 @@ if (!class_exists("Owark")) { if ( ini_get('disable_functions') ) { $not_allowed = ini_get('disable_functions'); - if ( stristr($not_allowed, 'exec') || stristr($not_allowed, 'passthru') ) { - $this->notices = $this->notices . "

The Open Web Archives requires that exec() and passthru() are allowed to run wget and retrieve the pages to archive.

"; + if ( stristr($not_allowed, 'exec') ) { + $this->notices = $this->notices . "

The Open Web Archives requires that exec() is allowed to run wget and retrieve the pages to archive.

"; } }