Code Duplication    Length = 4-4 lines in 2 locations

controller/admin_controller.php 2 locations

@@ 124-127 (lines=4) @@
121
			{
122
				$errors[] = $this->user->lang('AD_NAME_REQUIRED');
123
			}
124
			if (truncate_string($data['ad_name'], 255) !== $data['ad_name'])
125
			{
126
				$errors[] = $this->user->lang('AD_NAME_TOO_LONG');
127
			}
128
129
			if (empty($errors))
130
			{
@@ 188-191 (lines=4) @@
185
			{
186
				$errors[] = $this->user->lang('AD_NAME_REQUIRED');
187
			}
188
			if (truncate_string($data['ad_name'], 255) !== $data['ad_name'])
189
			{
190
				$errors[] = $this->user->lang('AD_NAME_TOO_LONG');
191
			}
192
193
			if (empty($errors))
194
			{