From 8dfb3afb38f7e330b17c1932ae3fa8d3825f1652 Mon Sep 17 00:00:00 2001 From: Joe Cooper Date: Sat, 10 May 2008 02:44:54 +0000 Subject: [PATCH] ui_hr --- postgresql/exec_form.cgi | 4 ++-- postgresql/index.cgi | 8 ++++---- postgresql/list_users.cgi | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/postgresql/exec_form.cgi b/postgresql/exec_form.cgi index f2443ee83..76622eb37 100755 --- a/postgresql/exec_form.cgi +++ b/postgresql/exec_form.cgi @@ -15,7 +15,7 @@ print "
\n"; print "\n"; # Form for executing commands from a file -print "
\n"; +print &ui_hr(); print "

",&text('exec_header2', "$in{'db'}"),"

\n"; print "

\n"; print " \n"; @@ -28,7 +28,7 @@ print "
", print "
\n"; # Form for loading a CSV or tab-separated file -print "
\n"; +print &ui_hr(); print "

",&text('exec_header3', "$in{'db'}"),"
", $text{'exec_header4'},"

\n"; print "

\n"; diff --git a/postgresql/index.cgi b/postgresql/index.cgi index b48b0b3b2..62a02ef07 100755 --- a/postgresql/index.cgi +++ b/postgresql/index.cgi @@ -58,7 +58,7 @@ if ($r == 0) { if (&is_postgresql_local()) { if ($access{'stop'} || $access{'users'}) { - print "
\n"; + print &ui_hr(); } print &ui_buttons_start(); if ($access{'stop'}) { @@ -243,7 +243,7 @@ else { } if ($access{'users'}) { - print "
\n"; + print &ui_hr(); print &ui_subheading($text{'index_users'}); @links = ( 'list_users.cgi', 'list_groups.cgi', 'list_hosts.cgi', 'list_grants.cgi' ); @@ -255,7 +255,7 @@ else { } if ($access{'stop'} && &is_postgresql_local()) { - print "
\n"; + print &ui_hr(); print "\n"; print "
\n"; print "\n" if (!$access{'stop'}); + print &ui_hr() if (!$access{'stop'}); print "\n"; print "\n"; print "
\n"; diff --git a/postgresql/list_users.cgi b/postgresql/list_users.cgi index ac899d82f..c94605edb 100755 --- a/postgresql/list_users.cgi +++ b/postgresql/list_users.cgi @@ -33,7 +33,7 @@ print &ui_links_row(\@rowlinks); print &ui_form_end([ [ "delete", $text{'user_delete'} ] ]); if (&get_postgresql_version() >= 7 && &foreign_installed("useradmin")) { - print "
\n"; + print &ui_hr(); print &ui_form_start("save_sync.cgi"); print "$text{'user_sync'}
\n";