Skip to content

Commit 461b242

Browse files
authored
fix php warning if panel is not found (#357)
1 parent 346a9c4 commit 461b242

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ function intropage_reload_panel() {
850850
}
851851
} else {
852852
print '<div class="panel_header color_grey">';
853-
print '<div class="panel_name">' . $name . '</div>';
853+
print '<div class="panel_name">' . __('Panel not found') . '</div>';
854854

855855
printf("<div class='panel_actions'></div>");
856856
print '</div>'; // end of header

0 commit comments

Comments
 (0)