From 82bb4284ba0f3d0cfddad55cef940f80944a1d96 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Thu, 17 Dec 2015 22:19:26 -0800 Subject: [PATCH] Fix call to theme override https://sourceforge.net/p/webadmin/bugs/4689/ --- ui-lib.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-lib.pl b/ui-lib.pl index b876523ce..a53aae538 100755 --- a/ui-lib.pl +++ b/ui-lib.pl @@ -226,7 +226,7 @@ Outputs a table row that spans the whole table, and contains the given text. sub ui_table_span { my ($text) = @_; -return &theme_ui_table_hr(@_) if (defined(&theme_ui_table_hr)); +return &theme_ui_table_span(@_) if (defined(&theme_ui_table_span)); my $rv; if ($ui_table_pos) { $rv .= "\n";