Remove the escape function from the lang helper
This commit is contained in:
parent
35023fef06
commit
9b66e9fedc
1 changed files with 1 additions and 1 deletions
|
@ -37,6 +37,6 @@ if ( ! function_exists('lang'))
|
|||
$result = '<label for="' . $for . '"' . _stringify_attributes($attributes) . '>' . $result . '</label>';
|
||||
}
|
||||
|
||||
return e($result ?: $line);
|
||||
return $result ?: $line;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue