]> git.mxchange.org Git - friendica.git/commitdiff
remove whitespace
authorrabuzarus <>
Fri, 29 May 2015 14:18:30 +0000 (16:18 +0200)
committerrabuzarus <>
Fri, 29 May 2015 14:18:30 +0000 (16:18 +0200)
mod/photos.php

index 8ec83b622b3659534a31514c42ad5403958c3aa0..33b45fb7aac9cff591b6194e1653186172b66f85 100644 (file)
@@ -46,20 +46,20 @@ function photos_init(&$a) {
                );
 
                 $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true);
-                
+
                 // add various encodings to the array so we can just loop through and pick them out in a template
                 $ret = array('success' => false);
-  
+
                 if($albums) {
                         $a->data['albums'] = $albums;
-                        if ($albums_visible) 
+                        if ($albums_visible)
                                 $ret['success'] = true;
 
                         $ret['albums'] = array();
                         foreach($albums as $k => $album) {
                                 $entry = array(
                                         'text'      => $album['album'],
-                                        'total'     => $album['total'], 
+                                        'total'     => $album['total'],
                                         'url'       => z_root() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album['album']),
                                         'urlencode' => urlencode($album['album']),
                                         'bin2hex'   => bin2hex($album['album'])