We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | } |
117 | 117 | |
118 | 118 | try { |
119 | - $TRADE_ROUTE =& $GLOBALS['TRADE_ROUTE']; |
|
119 | + $TRADE_ROUTE = & $GLOBALS['TRADE_ROUTE']; |
|
120 | 120 | debug('Action #' . $actions); |
121 | 121 | |
122 | 122 | //We have to reload player on each loop |
@@ -140,14 +140,14 @@ discard block |
||
140 | 140 | } |
141 | 141 | |
142 | 142 | if (!isset($TRADE_ROUTE)) { //We only want to change trade route if there isn't already one set. |
143 | - $TRADE_ROUTES =& findRoutes($player); |
|
144 | - $TRADE_ROUTE =& changeRoute($TRADE_ROUTES); |
|
143 | + $TRADE_ROUTES = & findRoutes($player); |
|
144 | + $TRADE_ROUTE = & changeRoute($TRADE_ROUTES); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | if ($player->isDead()) { |
148 | 148 | debug('Some evil person killed us, let\'s move on now.'); |
149 | 149 | $previousContainer = null; //We died, we don't care what we were doing beforehand. |
150 | - $TRADE_ROUTE =& changeRoute($TRADE_ROUTES); //Change route |
|
150 | + $TRADE_ROUTE = & changeRoute($TRADE_ROUTES); //Change route |
|
151 | 151 | processContainer(Page::create('death_processing.php')); |
152 | 152 | } |
153 | 153 | if ($player->getNewbieTurns() <= NEWBIE_TURNS_WARNING_LIMIT && $player->getNewbieWarning()) { |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | processContainer(tradeGoods($goodID, $player, $port)); |
224 | 224 | } else { |
225 | 225 | //Move to next route or fed. |
226 | - if (($TRADE_ROUTE =& changeRoute($TRADE_ROUTES)) === false) { |
|
226 | + if (($TRADE_ROUTE = & changeRoute($TRADE_ROUTES)) === false) { |
|
227 | 227 | debug('Changing Route Failed'); |
228 | 228 | processContainer(plotToFed($player)); |
229 | 229 | } else { |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | processContainer(tradeGoods($goodID, $player, $port)); |
251 | 251 | } else { |
252 | 252 | //Move to next route or fed. |
253 | - if (($TRADE_ROUTE =& changeRoute($TRADE_ROUTES)) === false) { |
|
253 | + if (($TRADE_ROUTE = & changeRoute($TRADE_ROUTES)) === false) { |
|
254 | 254 | debug('Changing Route Failed'); |
255 | 255 | processContainer(plotToFed($player)); |
256 | 256 | } else { |
@@ -582,9 +582,9 @@ discard block |
||
582 | 582 | return $false; |
583 | 583 | } |
584 | 584 | $routeKey = array_rand($tradeRoutes); |
585 | - $tradeRoute =& $tradeRoutes[$routeKey]; |
|
585 | + $tradeRoute = & $tradeRoutes[$routeKey]; |
|
586 | 586 | unset($tradeRoutes[$routeKey]); |
587 | - $GLOBALS['TRADE_ROUTE'] =& $tradeRoute; |
|
587 | + $GLOBALS['TRADE_ROUTE'] = & $tradeRoute; |
|
588 | 588 | debug('Switched route', $tradeRoute); |
589 | 589 | return $tradeRoute; |
590 | 590 | } |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | $menuItems[] = array('Link'=>Globals::getPlanetListHREF($alliance_id), 'Text'=>'Defense'); |
41 | 41 | $menuItems[] = array('Link'=>Globals::getPlanetListFinancialHREF($alliance_id), 'Text'=>'Financial'); |
42 | 42 | // make the selected index bold |
43 | - $boldItem =& $menuItems[$selected_index]['Text']; |
|
43 | + $boldItem = & $menuItems[$selected_index]['Text']; |
|
44 | 44 | $boldItem = '<span class="bold">' . $boldItem . '</span>'; |
45 | 45 | |
46 | 46 | $template = Smr\Template::getInstance(); |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | 'Text' => 'Game News', |
147 | 147 | ]; |
148 | 148 | // make the selected index bold |
149 | - $boldItem =& $menuItems[$selected_index]['Text']; |
|
149 | + $boldItem = & $menuItems[$selected_index]['Text']; |
|
150 | 150 | $boldItem = '<b>' . $boldItem . '</b>'; |
151 | 151 | |
152 | 152 | $template = Smr\Template::getInstance(); |
@@ -163,7 +163,7 @@ |
||
163 | 163 | |
164 | 164 | // transfer this value to next container |
165 | 165 | if (!isset($var[$source])) { |
166 | - throw new Exception('Could not find "' . $source. '" in var!'); |
|
166 | + throw new Exception('Could not find "' . $source . '" in var!'); |
|
167 | 167 | } |
168 | 168 | if ($dest === null) { |
169 | 169 | $dest = $source; |
@@ -19,8 +19,8 @@ discard block |
||
19 | 19 | 1 => array("pipe", "w") // stdout is a pipe that the child will write to |
20 | 20 | ); |
21 | 21 | $engine = proc_open(UCI_CHESS_ENGINE, $descriptorSpec, $pipes); |
22 | - $toEngine =& $pipes[0]; |
|
23 | - $fromEngine =& $pipes[1]; |
|
22 | + $toEngine = & $pipes[0]; |
|
23 | + $fromEngine = & $pipes[1]; |
|
24 | 24 | |
25 | 25 | function readFromEngine($block = true) { |
26 | 26 | global $fromEngine; |
@@ -84,5 +84,5 @@ discard block |
||
84 | 84 | function debug($message, $debugObject = null) { |
85 | 85 | echo date('Y-m-d H:i:s - ') . $message . ($debugObject !== null ? EOL . var_export($debugObject, true) : '') . EOL; |
86 | 86 | $db = Smr\Database::getInstance(); |
87 | - $db->query('INSERT INTO npc_logs (script_id, npc_id, time, message, debug_info, var) VALUES (' . (defined('SCRIPT_ID') ? SCRIPT_ID : 0) . ', 0, NOW(),' . $db->escapeString($message) . ',' . $db->escapeString(var_export($debugObject,true)) . ',' . $db->escapeString('') . ')'); |
|
87 | + $db->query('INSERT INTO npc_logs (script_id, npc_id, time, message, debug_info, var) VALUES (' . (defined('SCRIPT_ID') ? SCRIPT_ID : 0) . ', 0, NOW(),' . $db->escapeString($message) . ',' . $db->escapeString(var_export($debugObject, true)) . ',' . $db->escapeString('') . ')'); |
|
88 | 88 | } |
@@ -130,7 +130,7 @@ |
||
130 | 130 | AND receiver_delete = ' . $db->escapeBoolean(false) . ' |
131 | 131 | ORDER BY send_time DESC'); |
132 | 132 | while ($db->nextRecord()) { |
133 | - $groupBox =& $messageBox['GroupedMessages'][$db->getInt('sender_id')]; |
|
133 | + $groupBox = & $messageBox['GroupedMessages'][$db->getInt('sender_id')]; |
|
134 | 134 | // Limit the number of messages in each group |
135 | 135 | if (!isset($groupBox['Messages']) || count($groupBox['Messages']) < MESSAGE_SCOUT_GROUP_LIMIT) { |
136 | 136 | displayMessage($groupBox, $db->getInt('message_id'), $db->getInt('account_id'), $db->getInt('sender_id'), $player->getGameID(), stripslashes($db->getField('message_text')), $db->getInt('send_time'), $db->getBoolean('msg_read'), MSG_SCOUT, $player->getAccount()); |
@@ -1694,7 +1694,7 @@ discard block |
||
1694 | 1694 | create_error('The saved sector must be in the box!'); |
1695 | 1695 | } |
1696 | 1696 | |
1697 | - $storedDestinations =& $this->getStoredDestinations(); |
|
1697 | + $storedDestinations = & $this->getStoredDestinations(); |
|
1698 | 1698 | foreach ($storedDestinations as &$sd) { |
1699 | 1699 | if ($sd['SectorID'] == $sectorID) { |
1700 | 1700 | $sd['OffsetTop'] = $offsetTop; |
@@ -2014,13 +2014,13 @@ discard block |
||
2014 | 2014 | $this->db->query('SELECT type,amount FROM player_hof WHERE ' . $this->SQL); |
2015 | 2015 | $this->HOF = array(); |
2016 | 2016 | while ($this->db->nextRecord()) { |
2017 | - $hof =& $this->HOF; |
|
2017 | + $hof = & $this->HOF; |
|
2018 | 2018 | $typeList = explode(':', $this->db->getField('type')); |
2019 | 2019 | foreach ($typeList as $type) { |
2020 | 2020 | if (!isset($hof[$type])) { |
2021 | 2021 | $hof[$type] = array(); |
2022 | 2022 | } |
2023 | - $hof =& $hof[$type]; |
|
2023 | + $hof = & $hof[$type]; |
|
2024 | 2024 | } |
2025 | 2025 | $hof = $this->db->getFloat('amount'); |
2026 | 2026 | } |
@@ -2099,8 +2099,8 @@ discard block |
||
2099 | 2099 | } |
2100 | 2100 | self::$HOFVis[$hofType] = $visibility; |
2101 | 2101 | |
2102 | - $hof =& $this->HOF; |
|
2103 | - $hofChanged =& $this->hasHOFChanged; |
|
2102 | + $hof = & $this->HOF; |
|
2103 | + $hofChanged = & $this->hasHOFChanged; |
|
2104 | 2104 | $new = false; |
2105 | 2105 | foreach ($typeList as $type) { |
2106 | 2106 | if (!isset($hofChanged[$type])) { |
@@ -2110,8 +2110,8 @@ discard block |
||
2110 | 2110 | $hof[$type] = array(); |
2111 | 2111 | $new = true; |
2112 | 2112 | } |
2113 | - $hof =& $hof[$type]; |
|
2114 | - $hofChanged =& $hofChanged[$type]; |
|
2113 | + $hof = & $hof[$type]; |
|
2114 | + $hofChanged = & $hofChanged[$type]; |
|
2115 | 2115 | } |
2116 | 2116 | if ($hofChanged == null) { |
2117 | 2117 | $hofChanged = self::HOF_CHANGED; |
@@ -2780,7 +2780,7 @@ discard block |
||
2780 | 2780 | 'Starting Sector' => $this->getSectorID() |
2781 | 2781 | ); |
2782 | 2782 | |
2783 | - $this->missions[$missionID] =& $mission; |
|
2783 | + $this->missions[$missionID] = & $mission; |
|
2784 | 2784 | $this->setupMissionStep($missionID); |
2785 | 2785 | $this->rebuildMission($missionID); |
2786 | 2786 | |
@@ -2830,7 +2830,7 @@ discard block |
||
2830 | 2830 | |
2831 | 2831 | public function claimMissionReward(int $missionID) : string { |
2832 | 2832 | $this->getMissions(); |
2833 | - $mission =& $this->missions[$missionID]; |
|
2833 | + $mission = & $this->missions[$missionID]; |
|
2834 | 2834 | if ($mission === false) { |
2835 | 2835 | throw new Exception('Unknown mission: ' . $missionID); |
2836 | 2836 | } |