diff options
author | Simon Rettberg | 2020-04-21 18:31:32 +0200 |
---|---|---|
committer | Simon Rettberg | 2020-04-21 18:31:32 +0200 |
commit | ed128f61a2b659f2559b435c95d72a412ff9e9c8 (patch) | |
tree | 82e05d32fa5e6343547762f649c18040cb7a0f9b /modules-available/locations | |
parent | [statistics] Refactor filter creation (Part 1) (diff) | |
download | slx-admin-ed128f61a2b659f2559b435c95d72a412ff9e9c8.tar.gz slx-admin-ed128f61a2b659f2559b435c95d72a412ff9e9c8.tar.xz slx-admin-ed128f61a2b659f2559b435c95d72a412ff9e9c8.zip |
[locations] Add missing array key
Diffstat (limited to 'modules-available/locations')
-rw-r--r-- | modules-available/locations/inc/location.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules-available/locations/inc/location.inc.php b/modules-available/locations/inc/location.inc.php index 30f4b1c1..700edaf8 100644 --- a/modules-available/locations/inc/location.inc.php +++ b/modules-available/locations/inc/location.inc.php @@ -157,7 +157,8 @@ class Location array_unshift($rows, array( 'locationid' => 0, 'locationname' => '-----', - 'selected' => $selected === 0 + 'selected' => $selected === 0, + 'locationpad' => '', )); } if ($keepArrayKeys) |