Show
Ignore:
Timestamp:
05/17/07 16:25:43 (5 years ago)
Author:
fproulx
Message:

2007-05-17 François Proulx <francois.proulx@…>

  • WARNING: This has not been fully tested. Full testing to be completed on 2006-05-18 but I'm pretty confident that it works pretty well.
  • Added automatic resize on Avatars
  • Added FavoriteHotspots? content (mostly used for Profiles)
  • Added new features to Content and File
  • Fixed URL regexp bug in HyperlinkUtils?
  • Updated French translations
  • Updates profiles template
  • TODO: Add getNewUI et processNewUI to FavoriteHotspots? to simplify input
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/classes/User.php

    r1220 r1226  
    300300                } 
    301301            } 
    302               
    303               
    304               
     302 
     303 
     304 
    305305            // Display the avatar 
    306306            if(empty($avatar)) 
     
    308308            else 
    309309            $html .= $avatar; 
    310               
     310 
    311311            // Display the nickname or the username 
    312312            $profiles=$this->getAllProfiles(); 
     
    322322            } 
    323323            $profileTemplates = $this->getNetwork()->getAllProfileTemplates(); 
    324             if($this==User::getCurrentUser() && $profileTemplates) { 
    325                 $html .= "<div class='user_edit_profile_link'>(<a href='".BASE_SSL_PATH."admin/generic_object_admin.php?object_id=".$this->getId()."&object_class=User&action=edit'>"._("edit profile")."</a>)</div>"; 
    326             } 
     324            /*if($this==User::getCurrentUser() && $profileTemplates) { 
     325                $html .= "<div class='user_edit_profile_link'><br/>(<a href='".BASE_SSL_PATH."admin/generic_object_admin.php?object_id=".$this->getId()."&object_class=User&action=edit'>"._("edit profile")."</a>)</div>"; 
     326            }*/ 
    327327 
    328328        }