diff --git a/admin/templates/app.php b/admin/templates/app.php index 4b5740c2bc..9a788cf64c 100644 --- a/admin/templates/app.php +++ b/admin/templates/app.php @@ -19,7 +19,7 @@ $app=$_['app'];
- read more
'); ?> + read more
'); ?> INSTALL diff --git a/help/css/help.css b/help/css/help.css index 02bcade3cc..9e64c28afb 100644 --- a/help/css/help.css +++ b/help/css/help.css @@ -49,16 +49,16 @@ table td.name a } -.install a { +.button a { padding:0.2em 0.5em; border:1px solid #ddd; -moz-border-radius:15px; -webkit-border-radius:15px; border-radius:15px; text-decoration: none; - font-size:1.5em; color:#666666; + font-size:1.3em; color:#666666; background-color:#F0F0F0; } -.install a:hover { +.button a:hover { background-color:#DDDDDD; } diff --git a/help/templates/index.php b/help/templates/index.php index 51b673678d..776d7c00a9 100644 --- a/help/templates/index.php +++ b/help/templates/index.php @@ -1,10 +1,18 @@ + +

Questions and Answers

+ - - + +
"") { echo(''); } ?> " title="">
'.$kb['description'].''); ?>
"") { echo(''); } ?>
'.$kb['description'].''); ?>
+ '') echo('
Answer:
'.$kb['answer'].'');?> +
+ASK A QUESTION + + diff --git a/lib/ocsclient.php b/lib/ocsclient.php index 994a889aec..a3c4659c6e 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -126,7 +126,7 @@ class OC_OCSCLIENT{ * This function returns a list of all the knowledgebase entries from the OCS server */ public static function getKnownledgebaseEntries(){ - $url='http://api.apps.owncloud.com/v1/knowledgebase/data?page=0&pagesize=10'; + $url='http://api.apps.owncloud.com/v1/knowledgebase/data?type=150&page=0&pagesize=10'; $kbe=array(); $xml=file_get_contents($url); @@ -138,6 +138,7 @@ class OC_OCSCLIENT{ $kb['id']=$tmp[$i]->id; $kb['name']=$tmp[$i]->name; $kb['description']=$tmp[$i]->description; + $kb['answer']=$tmp[$i]->answer; $kb['preview1']=$tmp[$i]->smallpreviewpic1; $kbe[]=$kb; }