Skip to content
Snippets Groups Projects
Commit 0ddeab43 authored by chris's avatar chris
Browse files

plugin manager fix for php5/win bug

darcs-hash:20060202022424-9b6ab-36275dd4c71c272d332de76dd39cc45024c6cc18.gz
parent 6154103c
No related branches found
No related tags found
No related merge requests found
......@@ -328,7 +328,8 @@ class ap_manage {
return $log[$plugin];
}
if (preg_match_all('/'.$field.'=(.*)$/m',$log[$plugin], $match=array()))
$match = array();
if (preg_match_all('/'.$field.'=(.*)$/m',$log[$plugin], $match))
return implode("\n", $match[1]);
return '';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment