diff options
Diffstat (limited to 'lib/app.php')
-rwxr-xr-x | lib/app.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/app.php b/lib/app.php index 5c0ec2f01ef..006599e7dfc 100755 --- a/lib/app.php +++ b/lib/app.php @@ -437,6 +437,9 @@ class OC_App{ foreach($child->children() as $type){ $data['types'][]=$type->getName(); } + }elseif($child->getName()=='description'){ + $xml=(string)$child->asXML(); + $data[$child->getName()]=substr($xml,13,-14);//script <description> tags }else{ $data[$child->getName()]=(string)$child; } |