From a63b9b546c699e1f14ed26e18834b163360ba2c8 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Mon, 3 Nov 2014 15:14:38 +0100 Subject: Add plugin hook 'db_table_name' as requested in #1489837 --- program/lib/Roundcube/rcube_db.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'program/lib/Roundcube') diff --git a/program/lib/Roundcube/rcube_db.php b/program/lib/Roundcube/rcube_db.php index 1e6a206da..5a76f69c7 100644 --- a/program/lib/Roundcube/rcube_db.php +++ b/program/lib/Roundcube/rcube_db.php @@ -1063,6 +1063,10 @@ class rcube_db */ public function table_name($table, $quoted = false) { + // let plugins alter the table name (#1489837) + $plugin = rcube::get_instance()->plugins->exec_hook('db_table_name', array('table' => $table)); + $table = $plugin['table']; + // add prefix to the table name if configured if (($prefix = $this->options['table_prefix']) && strpos($table, $prefix) !== 0) { $table = $prefix . $table; -- cgit v1.2.3