From: sstamer Date: Thu, 29 Oct 2015 10:04:58 +0000 (+0100) Subject: Fix Application uninstall X-Git-Tag: 2015.07.6^2~2^2~8 X-Git-Url: http://git.tine20.org/?p=tine20;a=commitdiff_plain;h=ec102193236abfba989e38afedd200b82684279c Fix Application uninstall see 0011410: remove relations + modlog if app is uninstalled Change-Id: Icb0d352ba33c652395801a820da4f8643524fcd4 Reviewed-on: http://gerrit.tine20.com/customers/2329 Tested-by: Jenkins CI (http://ci.tine20.com/) Reviewed-by: Philipp Schüle --- diff --git a/tine20/Tinebase/Relation/Backend/Sql.php b/tine20/Tinebase/Relation/Backend/Sql.php index d95bd11..1d99843 100644 --- a/tine20/Tinebase/Relation/Backend/Sql.php +++ b/tine20/Tinebase/Relation/Backend/Sql.php @@ -483,7 +483,7 @@ class Tinebase_Relation_Backend_Sql extends Tinebase_Backend_Sql_Abstract */ public function removeApplication($applicationName) { - $tableName = $this->_db->quoteIdentifier(SQL_TABLE_PREFIX . 'relations'); + $tableName = SQL_TABLE_PREFIX . 'relations'; $select = $this->_db->select()->from($tableName)->columns('rel_id') ->where($this->_db->quoteIdentifier('own_model') . ' LIKE ?', $applicationName . '_%');