]> git.mxchange.org Git - friendica.git/blobdiff - mod/profile.php
Implement Smarty3
[friendica.git] / mod / profile.php
index abeb735fe86e5e973c09fa2f19140fed286804fa..15a02242124d7a63e311a6128680edf49919e38d 100644 (file)
@@ -33,6 +33,7 @@ function profile_init(&$a) {
                auto_redir($a, $which);
        }
 
+       $a->theme["template_engine"] = 'internal'; // 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);
                }
        }