Skip to content

Commit 588db49

Browse files
ddnodeStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 486c510 commit 588db49

File tree

406 files changed

+12874
-12185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

406 files changed

+12874
-12185
lines changed

cron.php

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
* @file
55
* Handles incoming requests to fire off regularly-scheduled tasks (cron jobs).
66
*/
7-
87
include_once './includes/bootstrap.inc';
98
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
109
drupal_cron_run();

index.php

+4-6
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@
1010
* All Drupal code is released under the GNU General Public License.
1111
* See COPYRIGHT.txt and LICENSE.txt.
1212
*/
13-
1413
require_once './includes/bootstrap.inc';
1514
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
1615

1716
$return = menu_execute_active_handler();
1817

1918
// Menu status constants are integers; page content is a string.
2019
if (is_int($return)) {
21-
switch ($return) {
20+
switch ($return) {
2221
case MENU_NOT_FOUND:
2322
drupal_not_found();
2423
break;
@@ -29,10 +28,9 @@
2928
drupal_site_offline();
3029
break;
3130
}
32-
}
33-
elseif (isset($return)) {
34-
// Print any value (including an empty string) except NULL or undefined:
35-
print theme('page', $return);
31+
} elseif (isset($return)) {
32+
// Print any value (including an empty string) except NULL or undefined:
33+
echo theme('page', $return);
3634
}
3735

3836
drupal_page_footer();

0 commit comments

Comments
 (0)