Browse Source

Code style: replace "array()" with "[]"

This was an automatic mass-replace. Manual replacement of array(...)
will continue
undefined
spaghetti 7 years ago
committed by Tomochin
parent
commit
fc607a2073
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      design/privateheader.php

+ 3
- 3
design/privateheader.php View File

@@ -117,7 +117,7 @@ $NotificationsManager = new NotificationsManager(G::$LoggedUser['ID']);
$Notifications = $NotificationsManager->get_notifications();
$UseNoty = $NotificationsManager->use_noty();
$NewSubscriptions = false;
$NotificationSpans = array();
$NotificationSpans = [];
foreach ($Notifications as $Type => $Notification) {
if ($Type === NotificationsManager::SUBSCRIPTIONS) {
$NewSubscriptions = true;
@@ -339,8 +339,8 @@ if (check_perms('site_send_unlimited_invites')) {
</div>
<?
//Start handling alert bars
$Alerts = array();
$ModBar = array();
$Alerts = [];
$ModBar = [];

// Staff blog
if (check_perms('users_mod')) {


Loading…
Cancel
Save