SyncruleTable: do not revalidate all the time
This commit is contained in:
parent
f41411c39a
commit
6f204f4d8c
|
@ -9,6 +9,8 @@ use Exception;
|
|||
|
||||
class SyncruleTable extends QuickTable
|
||||
{
|
||||
protected $revalidate = false;
|
||||
|
||||
public function getColumns()
|
||||
{
|
||||
return array(
|
||||
|
@ -43,6 +45,10 @@ class SyncruleTable extends QuickTable
|
|||
|
||||
protected function getRowClasses($row)
|
||||
{
|
||||
if (! $this->revalidate) {
|
||||
return array();
|
||||
}
|
||||
|
||||
try {
|
||||
// $mod = Sync::hasModifications(
|
||||
$mod = Sync::getExpectedModifications(
|
||||
|
|
Loading…
Reference in New Issue