Remove the escape function from the lang helper

This commit is contained in:
Alex Tselegidis 2023-03-13 08:11:01 +01:00
parent 35023fef06
commit 9b66e9fedc
1 changed files with 1 additions and 1 deletions

View File

@ -37,6 +37,6 @@ if ( ! function_exists('lang'))
$result = '<label for="' . $for . '"' . _stringify_attributes($attributes) . '>' . $result . '</label>';
}
return e($result ?: $line);
return $result ?: $line;
}
}