aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorStefan Parviainen <saparvia@caterva.eu>2014-12-28 11:28:54 +0100
committerStefan Parviainen <saparvia@caterva.eu>2014-12-28 11:28:54 +0100
commitfffc7dffbac6a335afb175525313069e0b21a388 (patch)
tree1f6e0a164e20a905c5667012740cda018f4ed3d2 /include
parentf08ee3bab9810ce4dd8386ef6a08baf15ee1aded (diff)
downloadvolse-hubzilla-fffc7dffbac6a335afb175525313069e0b21a388.tar.gz
volse-hubzilla-fffc7dffbac6a335afb175525313069e0b21a388.tar.bz2
volse-hubzilla-fffc7dffbac6a335afb175525313069e0b21a388.zip
Fix typo
Diffstat (limited to 'include')
-rw-r--r--include/bbcode.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index dbb0187f8..ab56bda61 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -30,7 +30,7 @@ function tryzrlvideo($match) {
$zrl = is_matrix_url($link);
if($zrl)
$link = zid($link);
- return '<video controls="controls" src="' . str_replac(' ','%20',$link) . '" style="width:100%; max-width:' . get_app()->videowidth . 'px"><a href="' . str_replace(' ','%20',$link) . '">' . $link . '</a></video>';
+ return '<video controls="controls" src="' . str_replace(' ','%20',$link) . '" style="width:100%; max-width:' . get_app()->videowidth . 'px"><a href="' . str_replace(' ','%20',$link) . '">' . $link . '</a></video>';
}