]> git.mxchange.org Git - friendica.git/blobdiff - mod/videos.php
Fix formatting in mod/settings
[friendica.git] / mod / videos.php
index 9f02441020b1aacd438b69805fc655e1dd89c883..412966f862b7e3138085f9d92679377010054b2d 100644 (file)
@@ -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'],