]> git.mxchange.org Git - friendica.git/commitdiff
Doxygen and bugfix
authorMichael <heluecht@pirati.ca>
Sat, 30 Sep 2017 17:42:03 +0000 (17:42 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 30 Sep 2017 17:42:03 +0000 (17:42 +0000)
boot.php
include/poller.php

index db5903829da4fff3ad4abfa3444eecb47889a86f..dfd3a20be65ddfdbf44686983218086b42ce9a8a 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -591,6 +591,11 @@ function is_ajax() {
        return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
 }
 
+/**
+ * @brief Function to check if request was an AJAX (xmlhttprequest) request.
+ *
+ * @param $via_worker boolean Is the check run via the poller?
+ */
 function check_db($via_worker) {
 
        $build = get_config('system', 'build');
index d07107e072d61f87128bb2fec2fe8ff15c8cba45..d3150421143a5521de4ab0f4960b61a163b7a96f 100644 (file)
@@ -32,6 +32,9 @@ function poller_run($argv, $argc){
 
        Config::load();
 
+       // Check the database structure and possibly fixes it
+       check_db(true);
+
        // Quit when in maintenance
        if (Config::get('system', 'maintenance', true)) {
                return;
@@ -890,9 +893,6 @@ function poller_run_cron() {
 }
 
 if (array_search(__file__,get_included_files())===0) {
-       // Check the database structure and possibly fixes it
-       check_db(true);
-
        poller_run($_SERVER["argv"],$_SERVER["argc"]);
 
        poller_unclaim_process();