mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-11 00:14:25 +02:00
remove more dashes in templates
This commit is contained in:
parent
d3d5557393
commit
b6981768ee
10 changed files with 29 additions and 8 deletions
|
@ -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 //
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue