aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-22 19:25:27 -0700
committerredmatrix <git@macgirvin.com>2016-05-22 19:25:27 -0700
commit2d06663490c5fd63b0ebbae141d0b2bbd5a4a8ca (patch)
tree92ee170c8b9fb036e09a7475b3984ecc5bd667ff /include/bbcode.php
parent5e0698ba8731e7e4659a24c0ab4fa9c4a1aef173 (diff)
downloadvolse-hubzilla-2d06663490c5fd63b0ebbae141d0b2bbd5a4a8ca.tar.gz
volse-hubzilla-2d06663490c5fd63b0ebbae141d0b2bbd5a4a8ca.tar.bz2
volse-hubzilla-2d06663490c5fd63b0ebbae141d0b2bbd5a4a8ca.zip
move apps to zlib
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index fd2d2f97a..ba35050e8 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -165,11 +165,10 @@ function bb_parse_crypt($match) {
}
function bb_parse_app($match) {
- require_once('include/apps.php');
- $app = app_decode($match[1]);
+ $app = Zotlabs\Lib\Apps::app_decode($match[1]);
if ($app)
- return app_render($app);
+ return Zotlab\Lib\Apps::app_render($app);
}
function bb_parse_element($match) {