Stephen Shkardoon 0cf8d7e6a8 Use SolrIndex->getIndexName() consistently
That's important in case we need to disambiguate the index, e.g. when multiple copies of the same codebase run on the same environment and server.
Example implementation:

function getIndexName() {
	return preg_replace('/[^\w]/i', '-', __FILE__);
}
2014-11-25 02:28:47 +13:00
..