Removing redundant class, relies on TableListField which was removed

This commit is contained in:
Sean Harvey 2013-04-30 15:25:08 +12:00
parent 9658af5cc8
commit 2812f6311c
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
<?php
class SubsiteAgnosticTableListField extends TableListField {
function getQuery() {
$oldState = Subsite::$disable_subsite_filter;
Subsite::$disable_subsite_filter = true;
$return = parent::getQuery();
Subsite::$disable_subsite_filter = $oldState;
return $return;
}
}