diff options
author | Stefan Parviainen <saparvia@caterva.eu> | 2014-12-28 11:28:54 +0100 |
---|---|---|
committer | Stefan Parviainen <saparvia@caterva.eu> | 2014-12-28 11:28:54 +0100 |
commit | fffc7dffbac6a335afb175525313069e0b21a388 (patch) | |
tree | 1f6e0a164e20a905c5667012740cda018f4ed3d2 | |
parent | f08ee3bab9810ce4dd8386ef6a08baf15ee1aded (diff) | |
download | volse-hubzilla-fffc7dffbac6a335afb175525313069e0b21a388.tar.gz volse-hubzilla-fffc7dffbac6a335afb175525313069e0b21a388.tar.bz2 volse-hubzilla-fffc7dffbac6a335afb175525313069e0b21a388.zip |
Fix typo
-rw-r--r-- | include/bbcode.php | 2 |
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>'; } |