Changeset 15 for trunk/inc/new

Show
Ignore:
Timestamp:
08/09/05 22:30:14 (7 years ago)
Author:
alexx
Message:
  • fix last bug in communities (see [14])
  • execute a "conversion smarty style" script ;) : for i in find . -type f | grep "\.php$" | grep -v "\.svn"; do perl -pi -e "s/\\\$smarty->assign\((.*),(.*)\);/\\\$_SMARTY\[\$1\] = \$2;/" $i; done
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/inc/new/profile.inc.php

    r1 r15  
    4141 
    4242 
    43 $smarty->assign('Title', 'Profile creation'); 
     43$_SMARTY['Title'] =  'Profile creation'; 
    4444 
    4545$step = array( 
     
    9393 
    9494 
    95 $smarty->assign('access_list',$access_list); 
    96 $smarty->assign('my', $my); 
     95$_SMARTY['access_list'] = $access_list; 
     96$_SMARTY['my'] =  $my; 
    9797 
    98 $smarty->assign('step', $step); 
     98$_SMARTY['step'] =  $step; 
    9999 
    100100?>