From 54660771d6d6a80e91b17966d4ec40064d85fef5 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Sat, 14 Nov 2015 14:51:44 +0100 Subject: [PATCH] SyncpropertyTable: no property edit without rule --- application/tables/SyncpropertyTable.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/application/tables/SyncpropertyTable.php b/application/tables/SyncpropertyTable.php index b8d319ad..075dba21 100644 --- a/application/tables/SyncpropertyTable.php +++ b/application/tables/SyncpropertyTable.php @@ -24,7 +24,13 @@ class SyncpropertyTable extends QuickTable protected function getActionUrl($row) { - return $this->url('director/syncproperty', array('id' => $row->id)); + return $this->url( + 'director/syncrule/editproperty', + array( + 'id' => $row->id, + 'rule_id' => $row->rule_id, + ) + ); } public function getTitles()