From b5234a4f34def2087f6d39c50bf567359689bac0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 30 Aug 2012 22:17:54 +0200 Subject: allow html inside app descriptions --- lib/app.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/app.php') 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 tags }else{ $data[$child->getName()]=(string)$child; } -- cgit v1.2.3