Correct line offset in Plugins

This commit is contained in:
Shoghi Cervantes
2013-06-04 10:58:11 +02:00
parent 033a1673f0
commit 6f8963bdcd
2 changed files with 4 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ class PluginAPI extends stdClass{
}else{
$content = file_get_contents($file);
$info = strstr($content, "*/", true);
$content = substr(strstr($content, "*/"),2);
$content = str_repeat(PHP_EOL, substr_count($info, "\n")).substr(strstr($content, "*/"),2);
if(preg_match_all('#([a-zA-Z0-9\-_]*)=([^\r\n]*)#u', $info, $matches) == 0){ //false or 0 matches
console("[ERROR] Failed parsing of ".basename($file));
return false;