diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-23 10:54:39 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-23 10:56:29 -0500 |
commit | acfd47748d1da62ac976fba8450277c88b402110 (patch) | |
tree | 4ec3e9021ffaede334d5af09883bb7f89e5126e0 /src | |
parent | add args to psql (diff) | |
download | crimson-acfd47748d1da62ac976fba8450277c88b402110.tar.gz crimson-acfd47748d1da62ac976fba8450277c88b402110.tar.bz2 crimson-acfd47748d1da62ac976fba8450277c88b402110.zip |
lang null check
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/lang.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/lang.php b/src/lib/lang.php index 84a4215..6be65e1 100644 --- a/src/lib/lang.php +++ b/src/lib/lang.php @@ -162,8 +162,10 @@ function ilang( // open tag $html .= "<{$type}"; foreach ($attrs as $key => $value) { - $value = esc($value, TRUE); // html tag & string escape - $html .= " {$key}=\"{$value}\""; + if ($value) { + $value = esc($value, TRUE); // html tag & string escape + $html .= " {$key}=\"{$value}\""; + } } $html .= ">"; // icon |