X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fvideos.php;h=412966f862b7e3138085f9d92679377010054b2d;hb=a5e91175243a41c77a56e73efc3672f20a7e6d23;hp=9f02441020b1aacd438b69805fc655e1dd89c883;hpb=1a60401d69e7d340e135c258eb058e88419151e9;p=friendica.git diff --git a/mod/videos.php b/mod/videos.php index 9f02441020..412966f862 100644 --- a/mod/videos.php +++ b/mod/videos.php @@ -378,14 +378,8 @@ function videos_content(App $a) { $videos = array(); if (DBM::is_result($r)) { foreach ($r as $rr) { - if ($a->theme['template_engine'] === 'internal') { - $alt_e = template_escape($rr['filename']); - $name_e = template_escape($rr['album']); - } - else { - $alt_e = $rr['filename']; - $name_e = $rr['album']; - } + $alt_e = $rr['filename']; + $name_e = $rr['album']; $videos[] = array( 'id' => $rr['id'],