]> git.mxchange.org Git - friendica.git/blobdiff - mod/profile.php
Move HTML part of oid to template + replace outside the tpl
[friendica.git] / mod / profile.php
index abeb735fe86e5e973c09fa2f19140fed286804fa..9e9af19834c0b6c89429cdfeb8b73ae9bd60e964 100644 (file)
@@ -33,6 +33,7 @@ function profile_init(&$a) {
                auto_redir($a, $which);
        }
 
+       set_template_engine($a); // reset the template engine to the default in case the user's theme doesn't specify one
        profile_load($a,$which,$profile);
 
        $blocked = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
@@ -324,10 +325,10 @@ function profile_content(&$a, $update = 0) {
 
        if(! $update) {
                if( get_config('alt_pager', 'global') || get_pconfig($a->profile['profile_uid'],'system','alt_pager') ) {
-                       $o .= paginate($a);
+                       $o .= alt_pager($a,count($items));
                }
                else {
-                       $o .= alt_pager($a,count($items));
+                       $o .= paginate($a);
                }
        }