From 8c3e33d04367a5b58f21d34f05b0a3382d5f51ac Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 19 Oct 2013 06:01:50 -0700 Subject: [PATCH] Fix coding style --- examples/openid.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/openid.php b/examples/openid.php index 2e997958bf..a99603de4b 100644 --- a/examples/openid.php +++ b/examples/openid.php @@ -37,7 +37,7 @@ $AUTH_MAP = array( * * @return void */ -function show_page($contents) +function Show_page($contents) { header('Content-Type: text/html; charset=utf-8'); echo '' . "\n"; @@ -93,7 +93,7 @@ OpenID:
'; - show_page($content); + Show_page($content); exit; } @@ -113,7 +113,7 @@ try { $contents = "
\n"; $contents .= "
" . $e->getMessage() . "
\n"; $contents .= "
"; - show_page($contents); + Show_page($contents); exit; } @@ -125,7 +125,7 @@ if (isset($_POST['start'])) { $contents = "
\n"; $contents .= "
" . $e->getMessage() . "
\n"; $contents .= "
"; - show_page($contents); + Show_page($contents); exit; } @@ -154,7 +154,7 @@ if (isset($_POST['start'])) { /* Redirect to phpMyAdmin (should use absolute URL here!) */ header('Location: ../index.php'); } else { - show_page('

User not allowed!

'); + Show_page('

User not allowed!

'); exit; } }