Skip to content

Commit cf24d8c

Browse files
Fix null scenario
1 parent f14630c commit cf24d8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/dqt/php/module.class.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class Module extends \Module
8686
JOIN cached_data_type USING (CachedDataTypeID)
8787
WHERE Name='projects_disk_space'",
8888
[]
89-
)
89+
) ?? ''
9090
),
9191
true
9292
);

modules/statistics/php/widgets.class.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class Widgets extends \NDB_Page implements ETagCalculator
129129
JOIN cached_data_type USING (CachedDataTypeID)
130130
WHERE Name='projects_disk_space'",
131131
[]
132-
)
132+
) ?? ''
133133
),
134134
true
135135
);

0 commit comments

Comments
 (0)