remove more dashes in templates

This commit is contained in:
Zach Prezkuta 2012-12-27 09:38:42 -07:00
parent d3d5557393
commit b6981768ee
10 changed files with 29 additions and 8 deletions

View file

@ -710,6 +710,16 @@ function admin_page_users(&$a){
$users = array_map("_setup_users", $users);
// Get rid of dashes in key names, Smarty3 can't handle them
foreach($users as $key => $user) {
$new_user = array();
foreach($user as $k => $v) {
$k = str_replace('-','_',$k);
$new_user[$k] = $v;
}
$users[$key] = $new_user;
}
$t = get_markup_template("admin_users.tpl");
$o = replace_macros($t, array(
// strings //