Commit ac597698 by Scott

Coding style (qa-page.php, app/page.php)

parent d6aa8810
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
http://www.question2answer.org/ http://www.question2answer.org/
File: qa-include/qa-page.php File: qa-include/qa-page.php
Description: Routing and utility functions for page requests Description: Initialization for page requests
This program is free software; you can redistribute it and/or This program is free software; you can redistribute it and/or
...@@ -20,33 +20,33 @@ ...@@ -20,33 +20,33 @@
More about this license: http://www.question2answer.org/license.php More about this license: http://www.question2answer.org/license.php
*/ */
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
header('Location: ../'); header('Location: ../');
exit; exit;
} }
require_once QA_INCLUDE_DIR.'app/page.php'; require_once QA_INCLUDE_DIR . 'app/page.php';
// Below are the steps that actually execute for this file - all the above are function definitions // Below are the steps that actually execute for this file - all the above are function definitions
global $qa_usage; global $qa_usage;
qa_report_process_stage('init_page'); qa_report_process_stage('init_page');
qa_db_connect('qa_page_db_fail_handler'); qa_db_connect('qa_page_db_fail_handler');
qa_page_queue_pending(); qa_page_queue_pending();
qa_load_state(); qa_load_state();
qa_check_login_modules(); qa_check_login_modules();
if (QA_DEBUG_PERFORMANCE) if (QA_DEBUG_PERFORMANCE)
$qa_usage->mark('setup'); $qa_usage->mark('setup');
qa_check_page_clicks(); qa_check_page_clicks();
$qa_content = qa_get_request_content(); $qa_content = qa_get_request_content();
if (is_array($qa_content)) { if (is_array($qa_content)) {
if (QA_DEBUG_PERFORMANCE) if (QA_DEBUG_PERFORMANCE)
$qa_usage->mark('view'); $qa_usage->mark('view');
...@@ -60,11 +60,6 @@ ...@@ -60,11 +60,6 @@
if (QA_DEBUG_PERFORMANCE) if (QA_DEBUG_PERFORMANCE)
$qa_usage->output(); $qa_usage->output();
} }
qa_db_disconnect();
/* qa_db_disconnect();
Omit PHP closing tag to help avoid accidental output
*/
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment