From 65640b02b14a1743bba87b0c2752dfc6e1f76c21 Mon Sep 17 00:00:00 2001 From: Falko Timme <ft@falkotimme.com> Date: Thu, 08 Jan 2015 10:40:39 -0500 Subject: [PATCH] - Mulitserver setup: list backups from remote servers in backup list. --- interface/lib/classes/tform_actions.inc.php | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/interface/lib/classes/tform_actions.inc.php b/interface/lib/classes/tform_actions.inc.php index 82d747f..dfc943c 100644 --- a/interface/lib/classes/tform_actions.inc.php +++ b/interface/lib/classes/tform_actions.inc.php @@ -106,6 +106,7 @@ global $app, $conf; $this->onBeforeUpdate(); + $app->plugin->raiseEvent($_SESSION['s']['module']['name'].':'.$app->tform->formDef['name'].':'.'on_before_update', $this); $ext_where = ''; $sql = $app->tform->getSQL($this->dataRecord, $app->tform->getCurrentTab(), 'UPDATE', $this->id, $ext_where); @@ -190,6 +191,7 @@ global $app, $conf; $this->onBeforeInsert(); + $app->plugin->raiseEvent($_SESSION['s']['module']['name'].':'.$app->tform->formDef['name'].':'.'on_before_insert', $this); $ext_where = ''; $sql = $app->tform->getSQL($this->dataRecord, $app->tform->getCurrentTab(), 'INSERT', $this->id, $ext_where); -- Gitblit v1.9.1