Code Duplication    Length = 8-8 lines in 2 locations

sources/admin/ManageSearch.controller.php 1 location

@@ 383-390 (lines=8) @@
380
		{
381
			$context['table_info'] = array_merge($table_info_defaults, $db_search->membersTableInfo());
382
		}
383
		else
384
		{
385
			// Here may be wolves.
386
			$context['table_info'] = array(
387
				'data_length' => $txt['not_applicable'],
388
				'index_length' => $txt['not_applicable'],
389
				'fulltext_length' => $txt['not_applicable'],
390
				'custom_index_length' => $txt['not_applicable'],
391
			);
392
		}
393

sources/database/DbSearch-postgresql.php 1 location

@@ 166-173 (lines=8) @@
163
			}
164
			$db->free_result($request);
165
		}
166
		else
167
			// Didn't work for some reason...
168
			$table_info = array(
169
				'data_length' => $txt['not_applicable'],
170
				'index_length' => $txt['not_applicable'],
171
				'fulltext_length' => $txt['not_applicable'],
172
				'custom_index_length' => $txt['not_applicable'],
173
			);
174
175
		return $table_info;
176
	}