From bac3bae9e3b25da3834088cb2c418f19fcefecda Mon Sep 17 00:00:00 2001 From: David Hicks Date: Sun, 26 Dec 2010 14:41:18 +1100 Subject: [PATCH] Issue #12545: Replace last remaining
's with
Required for strict XHTML output. --- admin/install.php | 2 +- admin/test_langs.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/install.php b/admin/install.php index 30acf228eb..867f3bdcdb 100644 --- a/admin/install.php +++ b/admin/install.php @@ -767,7 +767,7 @@ function InsertData( $p_table, $p_data ) { } else { $all_sql = ''; foreach ( $sqlarray as $single_sql ) - $all_sql .= $single_sql . '
'; + $all_sql .= $single_sql . '
'; print_test_result( BAD, true, $all_sql . $g_db->ErrorMsg() ); } echo ''; diff --git a/admin/test_langs.php b/admin/test_langs.php index 3bbdfe1b88..97c70929dc 100644 --- a/admin/test_langs.php +++ b/admin/test_langs.php @@ -352,11 +352,11 @@ function checktoken( $file, $base = false ) { } function lang_error_handler( $p_type, $p_error, $p_file, $p_line, $p_context ) { - print_error( "error handler thrown: " . $p_type . '
' . $p_error . '
' . $p_file . '
' . $p_line . '
' . $p_context ); + print_error( "error handler thrown: " . $p_type . '
' . $p_error . '
' . $p_file . '
' . $p_line . '
' . $p_context ); } function print_error( $p_string ) { - echo "ERROR: ", $p_string, '
'; + echo "ERROR: ", $p_string, '
'; } html_page_bottom();