diff options
author | redmatrix <git@macgirvin.com> | 2016-05-25 17:30:15 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-25 17:30:15 -0700 |
commit | 66b6f8c0ff39df0b50ae2cc374659b46defc924f (patch) | |
tree | 36e2c4d20a04076f5dd350e6eb4a78a9182b5074 | |
parent | e559f8b6a105ca38d826d5fa672d984c2b57d06b (diff) | |
download | volse-hubzilla-66b6f8c0ff39df0b50ae2cc374659b46defc924f.tar.gz volse-hubzilla-66b6f8c0ff39df0b50ae2cc374659b46defc924f.tar.bz2 volse-hubzilla-66b6f8c0ff39df0b50ae2cc374659b46defc924f.zip |
app rendering issues, typo in class name and could not find icon 'fa-arrow-circle-o-down-alt'; using 'fa-arrow-circle-o-down' instead
-rw-r--r-- | include/bbcode.php | 2 | ||||
-rw-r--r-- | view/tpl/app.tpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 1001a4938..142a15d35 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -168,7 +168,7 @@ function bb_parse_app($match) { $app = Zotlabs\Lib\Apps::app_decode($match[1]); if ($app) - return Zotlab\Lib\Apps::app_render($app); + return Zotlabs\Lib\Apps::app_render($app); } function bb_parse_element($match) { diff --git a/view/tpl/app.tpl b/view/tpl/app.tpl index 20a1337c7..3e6b71b29 100644 --- a/view/tpl/app.tpl +++ b/view/tpl/app.tpl @@ -14,7 +14,7 @@ <div class="app-tools"> <form action="{{$hosturl}}appman" method="post"> <input type="hidden" name="papp" value="{{$app.papp}}" /> - {{if $install}}<button type="submit" name="install" value="{{$install}}" class="btn btn-default" title="{{$install}}" ><i class="fa fa-arrow-circle-o-down-alt" ></i></button>{{/if}} + {{if $install}}<button type="submit" name="install" value="{{$install}}" class="btn btn-default" title="{{$install}}" ><i class="fa fa-arrow-circle-o-down" ></i></button>{{/if}} {{if $edit}}<input type="hidden" name="appid" value="{{$app.guid}}" /><button type="submit" name="edit" value="{{$edit}}" class="btn btn-default" title="{{$edit}}" ><i class="fa fa-pencil" ></i></button>{{/if}} {{if $delete}}<button type="submit" name="delete" value="{{$delete}}" class="btn btn-default" title="{{$delete}}" ><i class="fa fa-trash-o drop-icons"></i></button>{{/if}} </form> |