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/my/profile/contact/edit.inc.php

    r1 r15  
    2727unset($labels['profile']['country']['(null)']); 
    2828 
    29 $smarty->assign('Title', "Edit my contact"); 
     29$_SMARTY['Title'] =  "Edit my contact"; 
    3030 
    3131$t_name = 'user_contact'; 
     
    3939$access_list[$t_name] = get_access_list($_SESSION['my_id'], $t_name ); 
    4040 
    41 $smarty->assign('access_list',$access_list); 
     41$_SMARTY['access_list'] = $access_list; 
    4242 
    43 $smarty->assign('my', $my); 
     43$_SMARTY['my'] =  $my; 
    4444 
    4545?>