@@ -9,10 +9,10 @@ discard block |
||
| 9 | 9 | define('INSIDE', true); |
| 10 | 10 | define('INSTALL', false); |
| 11 | 11 | define('IN_ADMIN', true); |
| 12 | -require('../common.' . substr(strrchr(__FILE__, '.'), 1)); |
|
| 12 | +require('../common.'.substr(strrchr(__FILE__, '.'), 1)); |
|
| 13 | 13 | |
| 14 | 14 | // if ($user['authlevel'] < 2) |
| 15 | -if($user['authlevel'] < 3) { |
|
| 15 | +if ($user['authlevel'] < 3) { |
|
| 16 | 16 | AdminMessage(classLocale::$lang['adm_err_denied']); |
| 17 | 17 | } |
| 18 | 18 | |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | //while($CurrentFleet = db_fetch($FlyingFleets)) |
| 23 | 23 | |
| 24 | 24 | $all_flying_fleets = FleetList::dbGetFleetList(); |
| 25 | -foreach($all_flying_fleets->_container as $fleet_id => $objFleet) { |
|
| 25 | +foreach ($all_flying_fleets->_container as $fleet_id => $objFleet) { |
|
| 26 | 26 | $FleetOwner = db_user_by_id($objFleet->playerOwnerId); |
| 27 | 27 | $TargetOwner = db_user_by_id($objFleet->target_owner_id); |
| 28 | 28 | |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | $fleet_data['fleet']['STAY_TIME_INT'] = $objFleet->time_mission_job_complete; |
| 34 | 34 | |
| 35 | 35 | $template->assign_block_vars('fleets', $fleet_data['fleet']); |
| 36 | - foreach($fleet_data['ships'] as $ship_data) { |
|
| 36 | + foreach ($fleet_data['ships'] as $ship_data) { |
|
| 37 | 37 | $template->assign_block_vars('fleets.ships', $ship_data); |
| 38 | 38 | } |
| 39 | 39 | } |
@@ -13,9 +13,9 @@ discard block |
||
| 13 | 13 | define('INSTALL', false); |
| 14 | 14 | define('IN_ADMIN', true); |
| 15 | 15 | |
| 16 | -require('../common.' . substr(strrchr(__FILE__, '.'), 1)); |
|
| 16 | +require('../common.'.substr(strrchr(__FILE__, '.'), 1)); |
|
| 17 | 17 | |
| 18 | -if($user['authlevel'] < 3) { |
|
| 18 | +if ($user['authlevel'] < 3) { |
|
| 19 | 19 | AdminMessage(classLocale::$lang['adm_err_denied']); |
| 20 | 20 | } |
| 21 | 21 | |
@@ -24,16 +24,16 @@ discard block |
||
| 24 | 24 | $message = ''; |
| 25 | 25 | $message_status = ERR_ERROR; |
| 26 | 26 | |
| 27 | -if($points = sys_get_param_float('points')) { |
|
| 27 | +if ($points = sys_get_param_float('points')) { |
|
| 28 | 28 | // If points not empty... |
| 29 | - if($username = sys_get_param_str_unsafe('id_user')) { |
|
| 29 | + if ($username = sys_get_param_str_unsafe('id_user')) { |
|
| 30 | 30 | $row = db_user_by_id($username, false, 'id, username', true, true); |
| 31 | - if(!isset($row['id'])) { |
|
| 31 | + if (!isset($row['id'])) { |
|
| 32 | 32 | $row = db_user_by_username($username, false, 'id, username', true, true); |
| 33 | 33 | } |
| 34 | - if(is_array($row) && isset($row['id'])) { |
|
| 34 | + if (is_array($row) && isset($row['id'])) { |
|
| 35 | 35 | // Does anything post to DB? |
| 36 | - if(rpg_points_change( |
|
| 36 | + if (rpg_points_change( |
|
| 37 | 37 | $row['id'], |
| 38 | 38 | RPG_ADMIN, |
| 39 | 39 | $points, |
@@ -51,12 +51,12 @@ discard block |
||
| 51 | 51 | // Points not empty but destination is not set - this means error |
| 52 | 52 | $message = classLocale::$lang['adm_dm_no_dest']; |
| 53 | 53 | } |
| 54 | -} elseif($id_user) { |
|
| 54 | +} elseif ($id_user) { |
|
| 55 | 55 | // Points is empty but destination is set - this again means error |
| 56 | 56 | $message = classLocale::$lang['adm_dm_no_quant']; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | -if(!$isNoError) { |
|
| 59 | +if (!$isNoError) { |
|
| 60 | 60 | $template->assign_vars(array( |
| 61 | 61 | 'ID_USER' => $id_user, |
| 62 | 62 | 'POINTS' => $points, |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | )); |
| 65 | 65 | }; |
| 66 | 66 | |
| 67 | -if($message) { |
|
| 67 | +if ($message) { |
|
| 68 | 68 | $template->assign_block_vars('result', array('MESSAGE' => $message, 'STATUS' => $message_status ? $message_status : ERR_NONE)); |
| 69 | 69 | } |
| 70 | 70 | |
@@ -9,9 +9,9 @@ discard block |
||
| 9 | 9 | * @copyright 2008 by Chlorel for XNova |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -include('common.' . substr(strrchr(__FILE__, '.'), 1)); |
|
| 12 | +include('common.'.substr(strrchr(__FILE__, '.'), 1)); |
|
| 13 | 13 | |
| 14 | -if(HIDE_BUILDING_RECORDS) |
|
| 14 | +if (HIDE_BUILDING_RECORDS) |
|
| 15 | 15 | { |
| 16 | 16 | return; |
| 17 | 17 | } |
@@ -19,10 +19,10 @@ discard block |
||
| 19 | 19 | $template = gettemplate('records', true); |
| 20 | 20 | |
| 21 | 21 | $user_skip_list_data = sys_stat_get_user_skip_list(); |
| 22 | -$user_skip_list = empty($user_skip_list_data) ? '' : (' AND p.id_owner NOT IN (' . implode(',', $user_skip_list_data) . ')'); |
|
| 23 | -$user_skip_list_un = empty($user_skip_list_data) ? '' : (' AND un.unit_player_id NOT IN (' . implode(',', $user_skip_list_data) . ')'); |
|
| 22 | +$user_skip_list = empty($user_skip_list_data) ? '' : (' AND p.id_owner NOT IN ('.implode(',', $user_skip_list_data).')'); |
|
| 23 | +$user_skip_list_un = empty($user_skip_list_data) ? '' : (' AND un.unit_player_id NOT IN ('.implode(',', $user_skip_list_data).')'); |
|
| 24 | 24 | |
| 25 | -$user_skip_list_unit = empty($user_skip_list_data) ? '' : (' AND unit_player_id NOT IN (' . implode(',', $user_skip_list_data) . ')'); |
|
| 25 | +$user_skip_list_unit = empty($user_skip_list_data) ? '' : (' AND unit_player_id NOT IN ('.implode(',', $user_skip_list_data).')'); |
|
| 26 | 26 | |
| 27 | 27 | $show_groups = array( |
| 28 | 28 | UNIT_TECHNOLOGIES => 'tech', |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | $user_name_cache = array(); |
| 36 | 36 | |
| 37 | -foreach($show_groups as $unit_group_id => $mode) |
|
| 37 | +foreach ($show_groups as $unit_group_id => $mode) |
|
| 38 | 38 | { |
| 39 | 39 | $template->assign_block_vars('records', array( |
| 40 | 40 | 'UNIT' => classLocale::$lang['tech'][$unit_group_id], |
@@ -43,15 +43,15 @@ discard block |
||
| 43 | 43 | )); |
| 44 | 44 | $unit_group = get_unit_param('techtree', $unit_group_id); // TODO - REWRITE!!!! |
| 45 | 45 | |
| 46 | - foreach($unit_group as $unit_id) |
|
| 46 | + foreach ($unit_group as $unit_id) |
|
| 47 | 47 | { |
| 48 | 48 | $unit_name = &classLocale::$lang['tech'][$unit_id]; |
| 49 | - if($unit_name) |
|
| 49 | + if ($unit_name) |
|
| 50 | 50 | { |
| 51 | 51 | // TODO - ISUNITSTACKABLE! |
| 52 | 52 | $data_row = $unit_group_id == UNIT_SHIPS || $unit_group_id == UNIT_DEFENCE ? db_unit_records_sum($unit_id, $user_skip_list_unit) : db_unit_records_plain($unit_id, $user_skip_list_unit); |
| 53 | 53 | |
| 54 | - if($data_row) |
|
| 54 | + if ($data_row) |
|
| 55 | 55 | { |
| 56 | 56 | $template->assign_block_vars('records', array( |
| 57 | 57 | 'UNIT' => $unit_name, |
@@ -11,24 +11,24 @@ discard block |
||
| 11 | 11 | * @copyright 2008 by Pada for XNova.project.es |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -include('common.' . substr(strrchr(__FILE__, '.'), 1)); |
|
| 14 | +include('common.'.substr(strrchr(__FILE__, '.'), 1)); |
|
| 15 | 15 | |
| 16 | 16 | lng_include('overview'); |
| 17 | 17 | lng_include('universe'); |
| 18 | 18 | |
| 19 | 19 | $sensorLevel = mrc_get_level($user, $planetrow, STRUC_MOON_PHALANX); |
| 20 | 20 | if (!intval($sensorLevel)) { |
| 21 | - message (classLocale::$lang['phalanx_nosensoravailable'], classLocale::$lang['tech'][STRUC_MOON_PHALANX], '', 3); |
|
| 21 | + message(classLocale::$lang['phalanx_nosensoravailable'], classLocale::$lang['tech'][STRUC_MOON_PHALANX], '', 3); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | if ($planetrow['planet_type'] != PT_MOON) { |
| 25 | - message (classLocale::$lang['phalanx_onlyformoons'], classLocale::$lang['tech'][STRUC_MOON_PHALANX], '', 3); |
|
| 25 | + message(classLocale::$lang['phalanx_onlyformoons'], classLocale::$lang['tech'][STRUC_MOON_PHALANX], '', 3); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | $scan_galaxy = sys_get_param_int('galaxy'); |
| 29 | 29 | $scan_system = sys_get_param_int('system'); |
| 30 | 30 | $scan_planet = sys_get_param_int('planet'); |
| 31 | -$scan_planet_type = 1; // sys_get_param_int('planettype'); |
|
| 31 | +$scan_planet_type = 1; // sys_get_param_int('planettype'); |
|
| 32 | 32 | $id = sys_get_param_id('id'); |
| 33 | 33 | |
| 34 | 34 | $source_galaxy = $planetrow['galaxy']; |
@@ -38,9 +38,9 @@ discard block |
||
| 38 | 38 | $sensorRange = GetPhalanxRange($sensorLevel); |
| 39 | 39 | |
| 40 | 40 | $system_distance = abs($source_system - $scan_system); |
| 41 | -if($system_distance > $sensorRange || $scan_galaxy != $source_galaxy) |
|
| 41 | +if ($system_distance > $sensorRange || $scan_galaxy != $source_galaxy) |
|
| 42 | 42 | { |
| 43 | - message (classLocale::$lang['phalanx_rangeerror'], classLocale::$lang['tech'][STRUC_MOON_PHALANX], '', 3); |
|
| 43 | + message(classLocale::$lang['phalanx_rangeerror'], classLocale::$lang['tech'][STRUC_MOON_PHALANX], '', 3); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | $cost = $sensorLevel * 1000; |
@@ -51,14 +51,14 @@ discard block |
||
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | $planet_scanned = db_planet_by_gspt($scan_galaxy, $scan_system, $scan_planet, $scan_planet_type); |
| 54 | -if(!$planet_scanned['id']) |
|
| 54 | +if (!$planet_scanned['id']) |
|
| 55 | 55 | { |
| 56 | 56 | message(classLocale::$lang['phalanx_planet_not_exists'], classLocale::$lang['tech'][STRUC_MOON_PHALANX], '', 3); |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | -if($planet_scanned['destruyed']) |
|
| 59 | +if ($planet_scanned['destruyed']) |
|
| 60 | 60 | { |
| 61 | - message (classLocale::$lang['phalanx_planet_destroyed'], classLocale::$lang['tech'][STRUC_MOON_PHALANX], '', 3); |
|
| 61 | + message(classLocale::$lang['phalanx_planet_destroyed'], classLocale::$lang['tech'][STRUC_MOON_PHALANX], '', 3); |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | db_planet_set_by_id($user['current_planet'], "deuterium = deuterium - {$cost}"); |
@@ -8,41 +8,41 @@ discard block |
||
| 8 | 8 | * [!] Wrote from scratch |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -include('common.' . substr(strrchr(__FILE__, '.'), 1)); |
|
| 11 | +include('common.'.substr(strrchr(__FILE__, '.'), 1)); |
|
| 12 | 12 | |
| 13 | 13 | lng_include('notes'); |
| 14 | 14 | |
| 15 | 15 | $template = gettemplate('notes', true); |
| 16 | 16 | |
| 17 | 17 | $result = array(); |
| 18 | -if(($result_message = sys_get_param_str('MESSAGE')) && isset(classLocale::$lang[$result_message])) { |
|
| 18 | +if (($result_message = sys_get_param_str('MESSAGE')) && isset(classLocale::$lang[$result_message])) { |
|
| 19 | 19 | $result[] = array('STATUS' => sys_get_param_int('STATUS'), 'MESSAGE' => classLocale::$lang[$result_message]); |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | $note_id_edit = sys_get_param_id('note_id_edit'); |
| 23 | -if(sys_get_param('note_delete')) { |
|
| 23 | +if (sys_get_param('note_delete')) { |
|
| 24 | 24 | try { |
| 25 | 25 | $not = ''; |
| 26 | 26 | $query_where = ''; |
| 27 | - switch(sys_get_param_str('note_delete_range')) { |
|
| 27 | + switch (sys_get_param_str('note_delete_range')) { |
|
| 28 | 28 | case 'all': |
| 29 | 29 | break; |
| 30 | 30 | |
| 31 | 31 | case 'marked_not': |
| 32 | 32 | $not = 'NOT'; |
| 33 | 33 | case 'marked': |
| 34 | - if(!is_array($notes_marked = sys_get_param('note'))) { |
|
| 34 | + if (!is_array($notes_marked = sys_get_param('note'))) { |
|
| 35 | 35 | throw new Exception('note_err_none_selected', ERR_WARNING); |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | $notes_marked_filtered = array(); |
| 39 | - foreach($notes_marked as $note_id => $note_select) { |
|
| 40 | - if($note_select == 'on' && $note_id = idval($note_id)) { |
|
| 39 | + foreach ($notes_marked as $note_id => $note_select) { |
|
| 40 | + if ($note_select == 'on' && $note_id = idval($note_id)) { |
|
| 41 | 41 | $notes_marked_filtered[] = $note_id; |
| 42 | 42 | } |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - if(empty($notes_marked_filtered)) { |
|
| 45 | + if (empty($notes_marked_filtered)) { |
|
| 46 | 46 | throw new Exception('note_err_none_selected', ERR_WARNING); |
| 47 | 47 | } |
| 48 | 48 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | db_note_list_delete($user, $query_where); |
| 60 | 60 | sn_db_transaction_commit(); |
| 61 | 61 | throw new Exception($note_id_edit ? 'note_err_none_changed' : 'note_err_none_added', ERR_NONE); |
| 62 | - } catch(Exception $e) { |
|
| 62 | + } catch (Exception $e) { |
|
| 63 | 63 | $note_id_edit = 0; |
| 64 | 64 | sn_db_transaction_rollback(); |
| 65 | 65 | $result[] = array( |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | 'MESSAGE' => classLocale::$lang[$e->getMessage()], |
| 68 | 68 | ); |
| 69 | 69 | } |
| 70 | -} elseif(($note_title = sys_get_param_str('note_title')) || ($note_text = sys_get_param_str('note_text'))) { |
|
| 70 | +} elseif (($note_title = sys_get_param_str('note_title')) || ($note_text = sys_get_param_str('note_text'))) { |
|
| 71 | 71 | $note_title == db_escape(classLocale::$lang['note_new_title']) ? $note_title = '' : false; |
| 72 | 72 | ($note_text = sys_get_param_str('note_text')) == db_escape(classLocale::$lang['note_new_text']) ? $note_text = '' : false; |
| 73 | 73 | |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | $note_system = max(0, min(sys_get_param_id('note_system'), Vector::$knownSystems)); |
| 77 | 77 | $note_planet = max(0, min(sys_get_param_id('note_planet'), Vector::$knownPlanets + 1)); |
| 78 | 78 | |
| 79 | - if(!$note_text && !$note_title && !$note_galaxy && !$note_system && !$note_planet) { |
|
| 79 | + if (!$note_text && !$note_title && !$note_galaxy && !$note_system && !$note_planet) { |
|
| 80 | 80 | throw new exception('note_err_note_empty', ERR_WARNING); |
| 81 | 81 | } |
| 82 | 82 | |
@@ -85,15 +85,15 @@ discard block |
||
| 85 | 85 | $note_sticky = intval(sys_get_param_id('note_sticky')) ? 1 : 0; |
| 86 | 86 | |
| 87 | 87 | sn_db_transaction_start(); |
| 88 | - if($note_id_edit) { |
|
| 88 | + if ($note_id_edit) { |
|
| 89 | 89 | $check_note_id = db_note_get_id_and_owner($note_id_edit); |
| 90 | - if(!$check_note_id) { |
|
| 90 | + if (!$check_note_id) { |
|
| 91 | 91 | throw new Exception('note_err_note_not_found', ERR_ERROR); |
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - if($note_id_edit) { |
|
| 96 | - if($check_note_id['owner'] != $user['id']) { |
|
| 95 | + if ($note_id_edit) { |
|
| 96 | + if ($check_note_id['owner'] != $user['id']) { |
|
| 97 | 97 | throw new Exception('note_err_owner_wrong', ERR_ERROR); |
| 98 | 98 | } |
| 99 | 99 | |
@@ -103,9 +103,9 @@ discard block |
||
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | sn_db_transaction_commit(); |
| 106 | - sys_redirect('notes.php?STATUS=' . ERR_NONE . '&MESSAGE=' . ($note_id_edit ? 'note_err_none_changed' : 'note_err_none_added')); |
|
| 106 | + sys_redirect('notes.php?STATUS='.ERR_NONE.'&MESSAGE='.($note_id_edit ? 'note_err_none_changed' : 'note_err_none_added')); |
|
| 107 | 107 | // throw new exception($note_id_edit ? 'note_err_none_changed' : 'note_err_none_added', ERR_NONE); |
| 108 | - } catch(Exception $e) { |
|
| 108 | + } catch (Exception $e) { |
|
| 109 | 109 | $note_id_edit = 0; |
| 110 | 110 | sn_db_transaction_rollback(); |
| 111 | 111 | $result[] = array( |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | } |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | -if(!$note_id_edit) { |
|
| 118 | +if (!$note_id_edit) { |
|
| 119 | 119 | note_assign($template, array( |
| 120 | 120 | 'id' => 0, |
| 121 | 121 | 'time' => SN_TIME_NOW, |
@@ -128,13 +128,13 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | $note_exist = false; |
| 130 | 130 | $notes_query = db_note_list_by_owner($user['id']); |
| 131 | -while($note_row = db_fetch($notes_query)) { |
|
| 131 | +while ($note_row = db_fetch($notes_query)) { |
|
| 132 | 132 | note_assign($template, $note_row); |
| 133 | 133 | $note_exist = $note_exist || $note_row['id'] == $note_id_edit; |
| 134 | 134 | } |
| 135 | 135 | $note_id_edit = $note_exist ? $note_id_edit : 0; |
| 136 | 136 | |
| 137 | -foreach($note_priority_classes as $note_priority_id => $note_priority_class) { |
|
| 137 | +foreach ($note_priority_classes as $note_priority_id => $note_priority_class) { |
|
| 138 | 138 | $template->assign_block_vars('note_priority', array( |
| 139 | 139 | 'ID' => $note_priority_id, |
| 140 | 140 | 'CLASS' => $note_priority_classes[$note_priority_id], |
@@ -142,14 +142,14 @@ discard block |
||
| 142 | 142 | )); |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | -foreach(classLocale::$lang['sys_planet_type'] as $planet_type_id => $planet_type_string) { |
|
| 145 | +foreach (classLocale::$lang['sys_planet_type'] as $planet_type_id => $planet_type_string) { |
|
| 146 | 146 | $template->assign_block_vars('planet_type', array( |
| 147 | 147 | 'ID' => $planet_type_id, |
| 148 | 148 | 'TEXT' => $planet_type_string, |
| 149 | 149 | )); |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | -foreach($result as $result_data) { |
|
| 152 | +foreach ($result as $result_data) { |
|
| 153 | 153 | $template->assign_block_vars('result', $result_data); |
| 154 | 154 | } |
| 155 | 155 | |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * v1 (c) copyright 2010 by Gorlum for http://supernova.ws |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -include('common.' . substr(strrchr(__FILE__, '.'), 1)); |
|
| 11 | +include('common.'.substr(strrchr(__FILE__, '.'), 1)); |
|
| 12 | 12 | |
| 13 | 13 | lng_include('affilates'); |
| 14 | 14 | |
@@ -32,11 +32,11 @@ discard block |
||
| 32 | 32 | $gained += $affilate_gain; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | -$bannerURL = SN_ROOT_VIRTUAL_PARENT . classSupernova::$config->int_banner_URL; |
|
| 35 | +$bannerURL = SN_ROOT_VIRTUAL_PARENT.classSupernova::$config->int_banner_URL; |
|
| 36 | 36 | $bannerURL .= strpos($bannerURL, '?') ? '&' : '?'; |
| 37 | 37 | $bannerURL .= "id={$user['id']}"; |
| 38 | 38 | |
| 39 | -$userbarURL = SN_ROOT_VIRTUAL_PARENT . classSupernova::$config->int_userbar_URL; |
|
| 39 | +$userbarURL = SN_ROOT_VIRTUAL_PARENT.classSupernova::$config->int_userbar_URL; |
|
| 40 | 40 | $userbarURL .= strpos($userbarURL, '?') ? '&' : '?'; |
| 41 | 41 | $userbarURL .= "id={$user['id']}"; |
| 42 | 42 | |
@@ -10,9 +10,9 @@ discard block |
||
| 10 | 10 | * @copyright 2008 by ??????? for XNova |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -include('common.' . substr(strrchr(__FILE__, '.'), 1)); |
|
| 13 | +include('common.'.substr(strrchr(__FILE__, '.'), 1)); |
|
| 14 | 14 | |
| 15 | -if(classSupernova::$config->game_mode == GAME_BLITZ) { |
|
| 15 | +if (classSupernova::$config->game_mode == GAME_BLITZ) { |
|
| 16 | 16 | message(classLocale::$lang['sys_blitz_page_disabled'], classLocale::$lang['sys_error'], 'overview.php', 10); |
| 17 | 17 | die(); |
| 18 | 18 | } |
@@ -25,8 +25,8 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | $template = gettemplate('search', true); |
| 27 | 27 | |
| 28 | -if($searchtext && $type) { |
|
| 29 | - switch($type) { |
|
| 28 | +if ($searchtext && $type) { |
|
| 29 | + switch ($type) { |
|
| 30 | 30 | case "planetname": |
| 31 | 31 | // $search = db_planet_list_search($searchtext); |
| 32 | 32 | break; |
@@ -41,8 +41,8 @@ discard block |
||
| 41 | 41 | break; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - while($row = db_fetch($search)) { |
|
| 45 | - if($type == 'playername' || $type == 'planetname') { |
|
| 44 | + while ($row = db_fetch($search)) { |
|
| 45 | + if ($type == 'playername' || $type == 'planetname') { |
|
| 46 | 46 | $template->assign_block_vars('search_result', array( |
| 47 | 47 | 'PLAYER_ID' => $row['uid'], |
| 48 | 48 | 'PLAYER_NAME' => htmlentities($row['username'], ENT_COMPAT, 'UTF-8'), |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | 'ALLY_NAME' => htmlentities($row['ally_name'], ENT_COMPAT, 'UTF-8'), |
| 58 | 58 | 'ALLY_TAG' => htmlentities($row['ally_tag'], ENT_COMPAT, 'UTF-8'), |
| 59 | 59 | )); |
| 60 | - } elseif($type == 'ally') { |
|
| 60 | + } elseif ($type == 'ally') { |
|
| 61 | 61 | $template->assign_block_vars('search_result', array( |
| 62 | 62 | 'ALLY_NAME' => htmlentities($row['ally_name'], ENT_COMPAT, 'UTF-8'), |
| 63 | 63 | 'ALLY_TAG' => htmlentities($row['ally_tag'], ENT_COMPAT, 'UTF-8'), |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | 'ally' => 'sys_alliance', |
| 76 | 76 | ); |
| 77 | 77 | |
| 78 | -foreach($search_type as $type_id => $type_lang) { |
|
| 78 | +foreach ($search_type as $type_id => $type_lang) { |
|
| 79 | 79 | $template->assign_block_vars('type', array( |
| 80 | 80 | 'ID' => $type_id, |
| 81 | 81 | 'TEXT' => classLocale::$lang[$type_lang], |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -include_once('common.' . substr(strrchr(__FILE__, '.'), 1)); |
|
| 3 | +include_once('common.'.substr(strrchr(__FILE__, '.'), 1)); |
|
| 4 | 4 | |
| 5 | -if(sn_module_get_active_count('payment') && !defined('SN_GOOGLE')) { |
|
| 5 | +if (sn_module_get_active_count('payment') && !defined('SN_GOOGLE')) { |
|
| 6 | 6 | sys_redirect('metamatter.php'); |
| 7 | 7 | } |
| 8 | 8 | |
@@ -7,10 +7,10 @@ |
||
| 7 | 7 | * |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -define('INSIDE' , true); |
|
| 11 | -define('INSTALL' , false); |
|
| 10 | +define('INSIDE', true); |
|
| 11 | +define('INSTALL', false); |
|
| 12 | 12 | |
| 13 | -require('common.' . substr(strrchr(__FILE__, '.'), 1)); |
|
| 13 | +require('common.'.substr(strrchr(__FILE__, '.'), 1)); |
|
| 14 | 14 | |
| 15 | 15 | lng_include('quest'); |
| 16 | 16 | $template = gettemplate('quest', true); |