Passed
Push — master ( de1c6e...8badc5 )
by Stanislav
14:22 queued 11:27
created
core/acp/main_module.php 1 patch
Braces   +10 added lines, -20 removed lines patch added patch discarded remove patch
@@ -95,8 +95,7 @@  discard block
 block discarded – undo
95 95
 				'U_SOURCE_DIR_STATE'	=>  $this->language->lang('NO_WRITE_ACCESS'),
96 96
 				'U_SOURCE_DIR_STATE_ERROR'	=> 1,
97 97
 			));
98
-		}
99
-		else
98
+		} else
100 99
 		{
101 100
 			$template->assign_vars(array(
102 101
 				'U_FILE_DIR_STATE'	=>  $this->language->lang('WRITE_ACCESS'),
@@ -109,15 +108,13 @@  discard block
 block discarded – undo
109 108
 					'U_CORE_DIR_STATE'	=>  $this->language->lang('DIR_CREATED'),
110 109
 					'U_CORE_DIR_STATE_ERROR'	=> 0,
111 110
 				));
112
-			}
113
-			else if (is_writable($phpbbgallery_core_file))
111
+			} else if (is_writable($phpbbgallery_core_file))
114 112
 			{
115 113
 				$template->assign_vars(array(
116 114
 					'U_CORE_DIR_STATE'	=>  $this->language->lang('WRITE_ACCESS'),
117 115
 					'U_CORE_DIR_STATE_ERROR'	=> 0,
118 116
 				));
119
-			}
120
-			else
117
+			} else
121 118
 			{
122 119
 				$template->assign_vars(array(
123 120
 					'U_CORE_DIR_STATE'	=>  $this->language->lang('NO_WRITE_ACCESS'),
@@ -131,15 +128,13 @@  discard block
 block discarded – undo
131 128
 					'U_MEDIUM_DIR_STATE'	=>  $this->language->lang('DIR_CREATED'),
132 129
 					'U_MEDIUM_DIR_STATE_ERROR'	=> 0,
133 130
 				));
134
-			}
135
-			else if (is_writable($phpbbgallery_core_file_medium))
131
+			} else if (is_writable($phpbbgallery_core_file_medium))
136 132
 			{
137 133
 				$template->assign_vars(array(
138 134
 					'U_MEDIUM_DIR_STATE'	=>  $this->language->lang('WRITE_ACCESS'),
139 135
 					'U_MEDIUM_DIR_STATE_ERROR'	=> 0,
140 136
 				));
141
-			}
142
-			else
137
+			} else
143 138
 			{
144 139
 				$template->assign_vars(array(
145 140
 					'U_MEDIUM_DIR_STATE'	=>  $this->language->lang('NO_WRITE_ACCESS'),
@@ -153,15 +148,13 @@  discard block
 block discarded – undo
153 148
 					'U_MINI_DIR_STATE'	=>  $this->language->lang('DIR_CREATED'),
154 149
 					'U_MINI_DIR_STATE_ERROR'	=> 0,
155 150
 				));
156
-			}
157
-			else if (is_writable($phpbbgallery_core_file_mini))
151
+			} else if (is_writable($phpbbgallery_core_file_mini))
158 152
 			{
159 153
 				$template->assign_vars(array(
160 154
 					'U_MINI_DIR_STATE'	=>  $this->language->lang('WRITE_ACCESS'),
161 155
 					'U_MINI_DIR_STATE_ERROR'	=> 0,
162 156
 				));
163
-			}
164
-			else
157
+			} else
165 158
 			{
166 159
 				$template->assign_vars(array(
167 160
 					'U_MINI_DIR_STATE'	=>  $this->language->lang('NO_WRITE_ACCESS'),
@@ -175,15 +168,13 @@  discard block
 block discarded – undo
175 168
 					'U_SOURCE_DIR_STATE'	=>  $this->language->lang('DIR_CREATED'),
176 169
 					'U_SOURCE_DIR_STATE_ERROR'	=> 0,
177 170
 				));
178
-			}
179
-			else if (is_writable($phpbbgallery_core_file_source))
171
+			} else if (is_writable($phpbbgallery_core_file_source))
180 172
 			{
181 173
 				$template->assign_vars(array(
182 174
 					'U_SOURCE_DIR_STATE'	=>  $this->language->lang('WRITE_ACCESS'),
183 175
 					'U_SOURCE_DIR_STATE_ERROR'	=> 0,
184 176
 				));
185
-			}
186
-			else
177
+			} else
187 178
 			{
188 179
 				$template->assign_vars(array(
189 180
 					'U_SOURCE_DIR_STATE'	=>  $this->language->lang('NO_WRITE_ACCESS'),
@@ -282,8 +273,7 @@  discard block
 block discarded – undo
282 273
 					'reset_album_id'	=> $album_id,
283 274
 				)));
284 275
 			}
285
-		}
286
-		else
276
+		} else
287 277
 		{
288 278
 			switch ($action)
289 279
 			{
Please login to merge, or discard this patch.
core/acp/permissions_module.php 1 patch
Braces   +17 added lines, -34 removed lines patch added patch discarded remove patch
@@ -96,8 +96,7 @@  discard block
 block discarded – undo
96 96
 						if (!$submit)
97 97
 						{
98 98
 							$this->permissions_v_mask();
99
-						}
100
-						else
99
+						} else
101 100
 						{
102 101
 							$this->permissions_p_mask();
103 102
 						}
@@ -440,13 +439,11 @@  discard block
 block discarded – undo
440 439
 		if (!sizeof($group_id) && !sizeof($user_id))
441 440
 		{
442 441
 			trigger_error('NO_VICTIM_SELECTED', E_USER_WARNING);
443
-		}
444
-		else if (sizeof($group_id))
442
+		} else if (sizeof($group_id))
445 443
 		{
446 444
 			$victim_mode = 'group';
447 445
 			$victim_id = $group_id;
448
-		}
449
-		else
446
+		} else
450 447
 		{
451 448
 			$victim_mode = 'user';
452 449
 			$victim_id = $user_id;
@@ -478,8 +475,7 @@  discard block
 block discarded – undo
478 475
 				$victim_list[$row['group_id']] = $victim_row;
479 476
 			}
480 477
 			$db->sql_freeresult($result);
481
-		}
482
-		else
478
+		} else
483 479
 		{
484 480
 			// Get the user information
485 481
 			$sql = 'SELECT username, user_id, user_colour
@@ -562,12 +558,10 @@  discard block
 block discarded – undo
562 558
 								if (isset($roles[$role_id][$permission]) && ($roles[$role_id][$permission] == $phpbb_ext_gallery_core_auth::ACL_YES))
563 559
 								{
564 560
 									$acl_s_yes++;
565
-								}
566
-								else if (isset($roles[$role_id][$permission]) && ($roles[$role_id][$permission] == $phpbb_ext_gallery_core_auth::ACL_NEVER))
561
+								} else if (isset($roles[$role_id][$permission]) && ($roles[$role_id][$permission] == $phpbb_ext_gallery_core_auth::ACL_NEVER))
567 562
 								{
568 563
 									$acl_s_never++;
569
-								}
570
-								else if (isset($roles[$role_id][$permission]) && ($roles[$role_id][$permission] == $phpbb_ext_gallery_core_auth::ACL_NO))
564
+								} else if (isset($roles[$role_id][$permission]) && ($roles[$role_id][$permission] == $phpbb_ext_gallery_core_auth::ACL_NO))
571 565
 								{
572 566
 									$acl_s_no++;
573 567
 								}
@@ -596,8 +590,7 @@  discard block
 block discarded – undo
596 590
 					}
597 591
 				}
598 592
 			}
599
-		}
600
-		else
593
+		} else
601 594
 		{
602 595
 			$template->assign_block_vars('c_mask', array(
603 596
 				'C_MASK_ID'				=> $p_system,
@@ -673,13 +666,11 @@  discard block
 block discarded – undo
673 666
 		if (!sizeof($group_id) && !sizeof($user_id))
674 667
 		{
675 668
 			trigger_error('NO_VICTIM_SELECTED', E_USER_WARNING);
676
-		}
677
-		else if (sizeof($group_id))
669
+		} else if (sizeof($group_id))
678 670
 		{
679 671
 			$victim_mode = 'group';
680 672
 			$victim_id = $group_id;
681
-		}
682
-		else
673
+		} else
683 674
 		{
684 675
 			$victim_mode = 'user';
685 676
 			$victim_id = $user_id;
@@ -728,8 +719,7 @@  discard block
 block discarded – undo
728 719
 						if (substr($p_mask, -6, 6) == '_count')
729 720
 						{
730 721
 							$auth_settings[$c_mask][$v_mask][$p_mask] = $value;
731
-						}
732
-						else
722
+						} else
733 723
 						{
734 724
 							$auth_settings[$c_mask][$v_mask][$p_mask] = ($value == ACL_YES) ? $phpbb_ext_gallery_core_auth::ACL_YES : (($value == ACL_NEVER) ? $phpbb_ext_gallery_core_auth::ACL_NEVER : $phpbb_ext_gallery_core_auth::ACL_NO);
735 725
 							// Do we have moderators?
@@ -779,15 +769,13 @@  discard block
 block discarded – undo
779 769
 								}
780 770
 								// We take all permissions of another c_mask, so:
781 771
 								break;
782
-							}
783
-							else
772
+							} else
784 773
 							{
785 774
 								// The choosen option was disabled: Hacking attempt?!
786 775
 								trigger_error('HACKING_ATTEMPT', E_USER_WARNING);
787 776
 							}
788 777
 						}
789
-					}
790
-					else if ($i_mask)
778
+					} else if ($i_mask)
791 779
 					{
792 780
 						// Inherit permissions of one [c_mask][v_mask]
793 781
 						$v_mask = (int) $v_mask;
@@ -808,8 +796,7 @@  discard block
 block discarded – undo
808 796
 								}
809 797
 								$auth_settings[$c_mask][$v_mask] = $auth_settings[$ci_mask][$vi_mask];
810 798
 								$p_mask_storage[$auth_settings[$c_mask][$v_mask]]['usage'][] = array('c_mask' => $c_mask, 'v_mask' => $v_mask);
811
-							}
812
-							else
799
+							} else
813 800
 							{
814 801
 								// The choosen option was disabled: Hacking attempt?!
815 802
 								trigger_error('HACKING_ATTEMPT', E_USER_WARNING);
@@ -882,8 +869,7 @@  discard block
 block discarded – undo
882 869
 						$victim_names[$row['group_id']] = $row['group_name'];
883 870
 					}
884 871
 					$db->sql_freeresult($result);
885
-				}
886
-				else
872
+				} else
887 873
 				{
888 874
 					// Get username's for the GALLERY_MODSCACHE_TABLE
889 875
 					$sql = 'SELECT user_id, username
@@ -949,8 +935,7 @@  discard block
 block discarded – undo
949 935
 									'group_id'		=> $usage['v_mask'],
950 936
 									'group_name'	=> $victim_names[$usage['v_mask']],
951 937
 								);
952
-							}
953
-							else
938
+							} else
954 939
 							{
955 940
 								$sql_moderators[] = array(
956 941
 									'album_id'		=> $usage['c_mask'],
@@ -959,8 +944,7 @@  discard block
 block discarded – undo
959 944
 								);
960 945
 							}
961 946
 						}
962
-					}
963
-					else
947
+					} else
964 948
 					{
965 949
 						$sql_permissions[] = array(
966 950
 							'perm_role_id'					=> $role_id,
@@ -1084,8 +1068,7 @@  discard block
 block discarded – undo
1084 1068
 				$phpbb_ext_gallery_core_auth->set_user_permissions('all', '');
1085 1069
 
1086 1070
 				trigger_error($this->language->lang('COPY_PERMISSIONS_SUCCESSFUL') . adm_back_link($this->u_action));
1087
-			}
1088
-			else
1071
+			} else
1089 1072
 			{
1090 1073
 				$s_hidden_fields = array(
1091 1074
 					'submit'			=> $submit,
Please login to merge, or discard this patch.
core/acp/gallery_logs_module.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,8 +42,7 @@
 block discarded – undo
42 42
 			if (confirm_box(true))
43 43
 			{
44 44
 				$log->delete_logs($marked);
45
-			}
46
-			else
45
+			} else
47 46
 			{
48 47
 				confirm_box(false, $this->language->lang('CONFIRM_OPERATION'), build_hidden_fields(array(
49 48
 					'page'		=> $page,
Please login to merge, or discard this patch.
core/misc.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -72,14 +72,12 @@  discard block
 block discarded – undo
72 72
 			if ($login_explain && isset($this->user->lang[$login_explain]))
73 73
 			{
74 74
 				$login_explain = $this->user->lang($login_explain);
75
-			}
76
-			else
75
+			} else
77 76
 			{
78 77
 				$login_explain = '';
79 78
 			}
80 79
 			login_box($loginlink, $login_explain);
81
-		}
82
-		else
80
+		} else
83 81
 		{
84 82
 			$this->url->meta_refresh(3, $backlink);
85 83
 			trigger_error('NOT_AUTHORISED');
@@ -121,8 +119,7 @@  discard block
 block discarded – undo
121 119
 			}
122 120
 
123 121
 			return;
124
-		}
125
-		else if ($mode == 'albums')
122
+		} else if ($mode == 'albums')
126 123
 		{
127 124
 			// Mark album read
128 125
 			if (!is_array($album_id))
@@ -168,8 +165,7 @@  discard block
 block discarded – undo
168 165
 			}
169 166
 
170 167
 			return;
171
-		}
172
-		else if ($mode == 'album')
168
+		} else if ($mode == 'album')
173 169
 		{
174 170
 			if ($album_id === false)
175 171
 			{
Please login to merge, or discard this patch.
core/cache.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -180,8 +180,7 @@
 block discarded – undo
180 180
 		if ($subtarget)
181 181
 		{
182 182
 			$this->phpbb_cache->destroy($target, $subtarget);
183
-		}
184
-		else
183
+		} else
185 184
 		{
186 185
 			$this->phpbb_cache->destroy($target);
187 186
 		}
Please login to merge, or discard this patch.
core/ucp/main_module.php 1 patch
Braces   +13 added lines, -26 removed lines patch added patch discarded remove patch
@@ -108,8 +108,7 @@  discard block
 block discarded – undo
108 108
 						if (!$phpbb_ext_gallery_user->get_data('personal_album_id'))
109 109
 						{
110 110
 							$this->info();
111
-						}
112
-						else
111
+						} else
113 112
 						{
114 113
 							$this->manage_albums();
115 114
 						}
@@ -142,8 +141,7 @@  discard block
 block discarded – undo
142 141
 				'L_TITLE'			=> $this->language->lang('UCP_GALLERY_PERSONAL_ALBUMS'),
143 142
 				'L_TITLE_EXPLAIN'	=> $this->language->lang('NO_PERSONAL_ALBUM'),
144 143
 			));
145
-		}
146
-		else
144
+		} else
147 145
 		{
148 146
 			$phpbb_gallery_url->redirect('phpbb', 'ucp', 'i=-phpbbgallery-core-ucp-main_module&mode=manage_albums&action=manage');
149 147
 		}
@@ -230,8 +228,7 @@  discard block
 block discarded – undo
230 228
 		if (!$parent_id)
231 229
 		{
232 230
 			$navigation = $this->language->lang('PERSONAL_ALBUM');
233
-		}
234
-		else
231
+		} else
235 232
 		{
236 233
 			$navigation = $this->language->lang('PERSONAL_ALBUM');
237 234
 
@@ -241,8 +238,7 @@  discard block
 block discarded – undo
241 238
 				if ($row['album_id'] == $parent_id)
242 239
 				{
243 240
 					$navigation .= ' » ' . $row['album_name'];
244
-				}
245
-				else
241
+				} else
246 242
 				{
247 243
 					$navigation .= ' &raquo; <a href="' . $this->u_action . '&amp;action=manage&amp;parent_id=' . $row['album_id'] . '">' . $row['album_name'] . '</a>';
248 244
 				}
@@ -357,8 +353,7 @@  discard block
 block discarded – undo
357 353
 				'S_AUTH_ACCESS_OPTIONS'		=> $s_access_options,
358 354
 				'L_ALBUM_ACCESS_EXPLAIN'	=> $this->language->lang('ALBUM_ACCESS_EXPLAIN', '<a href="' . $phpbb_gallery_url->append_sid('phpbb', 'faq') . '#f6r0">', '</a>'),
359 355
 			));
360
-		}
361
-		else
356
+		} else
362 357
 		{
363 358
 			if (!check_form_key('ucp_gallery'))
364 359
 			{
@@ -506,8 +501,7 @@  discard block
 block discarded – undo
506 501
 
507 502
 				'S_MODE' 					=> 'edit',
508 503
 			));
509
-		}
510
-		else
504
+		} else
511 505
 		{
512 506
 			// Is it salty ?
513 507
 			if (!check_form_key('ucp_gallery'))
@@ -591,8 +585,7 @@  discard block
 block discarded – undo
591 585
 						WHERE album_user_id = ' . (int) $row['album_user_id'] . '
592 586
 							AND right_id >= ' . (int) $row['left_id'];
593 587
 					$db->sql_query($sql);
594
-				}
595
-				else
588
+				} else
596 589
 				{
597 590
 					$sql = 'UPDATE ' . $albums_table . '
598 591
 						SET left_id = left_id - ' . $moving_ids . '
@@ -638,8 +631,7 @@  discard block
 block discarded – undo
638 631
 			if ($album_data['album_name'] == '')
639 632
 			{
640 633
 				$album_data['album_name'] = $row['album_name'];
641
-			}
642
-			else if ($row['album_name'] != $album_data['album_name'])
634
+			} else if ($row['album_name'] != $album_data['album_name'])
643 635
 			{
644 636
 				$sql = 'UPDATE ' . $albums_table . "
645 637
 					SET album_parents = ''";
@@ -650,8 +642,7 @@  discard block
 block discarded – undo
650 642
 			if (isset($config['zebra_enhance_version']))
651 643
 			{
652 644
 				$album_data['album_auth_access'] = min(4, max(0, $album_data['album_auth_access']));
653
-			}
654
-			else
645
+			} else
655 646
 			{
656 647
 				$album_data['album_auth_access'] = min(3, max(0, $album_data['album_auth_access']));
657 648
 			}
@@ -804,8 +795,7 @@  discard block
 block discarded – undo
804 795
 						$phpbb_ext_gallery_config->set('newest_pega_username', $newest_pgallery['username']);
805 796
 						$phpbb_ext_gallery_config->set('newest_pega_user_colour', $newest_pgallery['user_colour']);
806 797
 						$phpbb_ext_gallery_config->set('newest_pega_album_id', $newest_pgallery['album_id']);
807
-					}
808
-					else
798
+					} else
809 799
 					{
810 800
 						$phpbb_ext_gallery_config->set('newest_pega_user_id', 0);
811 801
 						$phpbb_ext_gallery_config->set('newest_pega_username', '');
@@ -813,8 +803,7 @@  discard block
 block discarded – undo
813 803
 						$phpbb_ext_gallery_config->set('newest_pega_album_id', 0);
814 804
 					}
815 805
 				}
816
-			}
817
-			else
806
+			} else
818 807
 			{
819 808
 				// Solve the left_id right_id problem
820 809
 				$delete_id = $right_id - ($left_id - 1);
@@ -855,8 +844,7 @@  discard block
 block discarded – undo
855 844
 
856 845
 			trigger_error($this->language->lang('DELETED_ALBUMS') . '<br /><br />
857 846
 				<a href="' . (($parent_id) ? $phpbb_gallery_url->append_sid('phpbb', 'ucp', 'i=-phpbbgallery-core-ucp-main_module&amp;mode=manage_albums&amp;action=manage&amp;parent_id=' . $parent_id) : $phpbb_gallery_url->append_sid('phpbb', 'ucp', 'i=-phpbbgallery-core-ucp-main_module&amp;mode=manage_albums')) . '">' . $this->language->lang('BACK_TO_PREV') . '</a>');
858
-		}
859
-		else
847
+		} else
860 848
 		{
861 849
 			$album_id = $request->variable('album_id', 0);
862 850
 			$phpbb_ext_gallery_core_album->check_user($album_id);
@@ -899,8 +887,7 @@  discard block
 block discarded – undo
899 887
 
900 888
 			$move_up_left = $moving['left_id'];
901 889
 			$move_up_right = $moving['right_id'];
902
-		}
903
-		else
890
+		} else
904 891
 		{
905 892
 			$left_id = $moving['left_id'];
906 893
 			$right_id = $target['right_id'];
Please login to merge, or discard this patch.
core/url.php 1 patch
Braces   +5 added lines, -10 removed lines patch added patch discarded remove patch
@@ -121,8 +121,7 @@  discard block
 block discarded – undo
121 121
 		{
122 122
 			$mode = array_shift($args);
123 123
 			$args[0] = $this->path($mode) . $this->phpEx_file($args[0]);
124
-		}
125
-		else
124
+		} else
126 125
 		{
127 126
 			$args[0] = $this->path() . $this->phpEx_file($args[0]);
128 127
 		}
@@ -197,8 +196,7 @@  discard block
 block discarded – undo
197 196
 		if (!is_array($file))
198 197
 		{
199 198
 			include($this->path($path) . $sub_directory . $this->phpEx_file($file));
200
-		}
201
-		else
199
+		} else
202 200
 		{
203 201
 			foreach ($file as $real_file)
204 202
 			{
@@ -244,8 +242,7 @@  discard block
 block discarded – undo
244 242
 			if (strpos($path, 'https:/') === 0)
245 243
 			{
246 244
 				$path = 'https://' . substr($path, 7);
247
-			}
248
-			else if (strpos($path, 'http:/') === 0)
245
+			} else if (strpos($path, 'http:/') === 0)
249 246
 			{
250 247
 				$path = 'http://' . substr($path, 6);
251 248
 			}
@@ -300,15 +297,13 @@  discard block
 block discarded – undo
300 297
 		if ($this->config['force_server_vars'] == 1)
301 298
 		{
302 299
 			$url = $this->config['server_protocol'] . $url;
303
-		}
304
-		else
300
+		} else
305 301
 		{
306 302
 			$is_secure = $this->request->server('HTTPS', '');
307 303
 			if ($is_secure == 'on')
308 304
 			{
309 305
 				$url = 'https://' . $url;
310
-			}
311
-			else
306
+			} else
312 307
 			{
313 308
 				$url = 'http://' . $url;
314 309
 			}
Please login to merge, or discard this patch.
acpimport/migrations/m1_init.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,8 +69,7 @@
 block discarded – undo
69 69
 			if (is_dir($file))
70 70
 			{
71 71
 				recursiveRemoveDirectory($file);
72
-			}
73
-			else
72
+			} else
74 73
 			{
75 74
 				unlink($file);
76 75
 			}
Please login to merge, or discard this patch.
acpimport/acp/main_module.php 1 patch
Braces   +6 added lines, -12 removed lines patch added patch discarded remove patch
@@ -47,8 +47,7 @@  discard block
 block discarded – undo
47 47
 				// Replace the md5 with the ' again and remove the space at the end to prevent \' troubles
48 48
 				$user_data['username'] = utf8_substr(str_replace("{{$import_schema}}", "'", $user_data['username']), 0, -1);
49 49
 				$image_name = utf8_substr(str_replace("{{$import_schema}}", "'", $image_name), 0, -1);
50
-			}
51
-			else
50
+			} else
52 51
 			{
53 52
 				global $phpEx;
54 53
 				trigger_error($user->lang('MISSING_IMPORT_SCHEMA', ($import_schema . '.' . $phpEx)), E_USER_WARNING);
@@ -198,8 +197,7 @@  discard block
 block discarded – undo
198 197
 						if ($filename || ($image_name == ''))
199 198
 						{
200 199
 							$sql_ary['image_name'] = str_replace("_", " ", utf8_substr($image_src, 0, utf8_strrpos($image_src, '.')));
201
-						}
202
-						else
200
+						} else
203 201
 						{
204 202
 							$sql_ary['image_name'] = str_replace('{NUM}', $num_offset + $done_images, $image_name);
205 203
 						}
@@ -239,14 +237,12 @@  discard block
 block discarded – undo
239 237
 				if (!$errors)
240 238
 				{
241 239
 					trigger_error(sprintf($user->lang['IMPORT_FINISHED'], $done_images) . adm_back_link($this->u_action));
242
-				}
243
-				else
240
+				} else
244 241
 				{
245 242
 					$errors = explode("\n", $errors);
246 243
 					trigger_error(sprintf($user->lang['IMPORT_FINISHED_ERRORS'], $done_images - sizeof($errors)) . implode('<br />', $errors) . adm_back_link($this->u_action), E_USER_WARNING);
247 244
 				}
248
-			}
249
-			else
245
+			} else
250 246
 			{
251 247
 				// Write the new list
252 248
 				$this->create_import_schema($import_schema, $album_id, $user_data, $start_time, $num_offset, $done_images, $todo_images, $image_name, $filename, $images);
@@ -256,8 +252,7 @@  discard block
 block discarded – undo
256 252
 				meta_refresh(1, $forward_url);
257 253
 				trigger_error(sprintf($user->lang['IMPORT_DEBUG_MES'], $done_images, $todo_images));
258 254
 			}
259
-		}
260
-		else if ($submit)
255
+		} else if ($submit)
261 256
 		{
262 257
 			if (!check_form_key('acp_gallery'))
263 258
 			{
@@ -313,8 +308,7 @@  discard block
 block discarded – undo
313 308
 						$album_id = $gallery_album->generate_personal_album($user_row['username'], $user_row['user_id'], $user_row['user_colour'], $image_user);
314 309
 					}
315 310
 					unset($image_user);
316
-				}
317
-				else
311
+				} else
318 312
 				{
319 313
 					$album_id = $image_user->get_data('personal_album_id');
320 314
 					if (!$album_id)
Please login to merge, or discard this patch.