]> git.mxchange.org Git - friendica.git/commitdiff
Convention:
authorRoland Haeder <roland@mxchange.org>
Sat, 25 Mar 2017 12:56:56 +0000 (13:56 +0100)
committerRoland Haeder <roland@mxchange.org>
Sat, 25 Mar 2017 12:58:50 +0000 (13:58 +0100)
- comment blocks with 2 stars at beinging are doc-tags, with only star is a
  regular multi-line comment
- added curly braces + spaces
- removed TODO, there needs to be a way of writing this better than using @

Signed-off-by: Roland Haeder <roland@mxchange.org>
index.php

index 19eb5bff7439d11965c91207d79597390a9af399..349e1cc607993c19a3f0c317bdc2ecf181b5569a 100644 (file)
--- a/index.php
+++ b/index.php
@@ -336,6 +336,7 @@ if ($a->module_loaded) {
                $func = str_replace('-','_',current_theme()) . '_init';
                $func($a);
        }
+/// @TODO commented out? old-lost again? :-)
 //     elseif (x($a->theme_info,"extends") && file_exists("view/theme/".$a->theme_info["extends"]."/theme.php")) {
 //             require_once("view/theme/".$a->theme_info["extends"]."/theme.php");
 //             if (function_exists(str_replace('-','_',$a->theme_info["extends"]) . '_init')) {
@@ -376,27 +377,25 @@ if ($a->module_loaded) {
 
 /*
  * Create the page head after setting the language
- * and getting any auth credentials
+ * and getting any auth credentials.
  *
  * Moved init_pagehead() and init_page_end() to after
  * all the module functions have executed so that all
- * theme choices made by the modules can take effect
+ * theme choices made by the modules can take effect.
  */
 
 $a->init_pagehead();
 
-/**
+/*
  * Build the page ending -- this is stuff that goes right before
  * the closing </body> tag
  */
-
 $a->init_page_end();
 
 // If you're just visiting, let javascript take you home
-
-if (x($_SESSION,'visitor_home')) {
+if (x($_SESSION, 'visitor_home')) {
        $homebase = $_SESSION['visitor_home'];
-} elseif (local_user()) {
+] elseif (local_user()) {
        $homebase = 'profile/' . $a->user['nickname'];
 }
 
@@ -404,35 +403,35 @@ if (isset($homebase)) {
        $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
 }
 
+<<<<<<< HEAD
 // now that we've been through the module content, see if the page reported
 // a permission problem and if so, a 403 response would seem to be in order.
 
+=======
+/*
+ * now that we've been through the module content, see if the page reported
+ * a permission problem and if so, a 403 response would seem to be in order.
+ */
+>>>>>>> 29f1028... Convention:
 if (stristr( implode("",$_SESSION['sysmsg']), t('Permission denied'))) {
        header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . t('Permission denied.'));
 }
 
-/**
- *
+/*
  * Report anything which needs to be communicated in the notification area (before the main body)
- *
  */
-
 call_hooks('page_end', $a->page['content']);
 
-/**
- *
+/*
  * Add the navigation (menu) template
- *
  */
-
 if ($a->module != 'install' && $a->module != 'maintenance') {
        nav($a);
 }
 
-/**
+/*
  * Add a "toggle mobile" link if we're using a mobile device
  */
-
 if ($a->is_mobile || $a->is_tablet) {
        if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
                $link = 'toggle_mobile?address=' . curPageURL();