Prevent warning
authorJoey Schulze <joey@infodrom.org>
Sun, 8 Sep 2019 19:25:59 +0000 (21:25 +0200)
committerJoey Schulze <joey@infodrom.org>
Sun, 8 Sep 2019 19:25:59 +0000 (21:25 +0200)
src/InfoCon/buch/infocon

index 931fdc7..8fe4c52 100755 (executable)
@@ -200,7 +200,7 @@ sub sales_list
        $where .= sprintf("description ILIKE '%%%s%%'", $opt_grep);
     }
 
        $where .= sprintf("description ILIKE '%%%s%%'", $opt_grep);
     }
 
-    if ($where !~ /visible/) {
+    if (defined $where && $where !~ /visible/) {
        $where .= " AND " if $where;
        $where .= "visible = 1";
     }
        $where .= " AND " if $where;
        $where .= "visible = 1";
     }