diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-01-22 22:52:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-01-22 22:52:38 +0000 |
commit | af6540b07ff298296cf50a79e2727aa3b34a6d9e (patch) | |
tree | 57f6154cb275648420f9494d4bfa6ab346c50760 /includes/database | |
parent | ce40e98e58c760f918955c14ffc2fdf687f471d0 (diff) | |
download | brdo-af6540b07ff298296cf50a79e2727aa3b34a6d9e.tar.gz brdo-af6540b07ff298296cf50a79e2727aa3b34a6d9e.tar.bz2 |
- Patch #692302 by Crell: searching for the wrong extender subclass.
Diffstat (limited to 'includes/database')
-rw-r--r-- | includes/database/select.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/select.inc b/includes/database/select.inc index 1dc4dc723..210e4b7e5 100644 --- a/includes/database/select.inc +++ b/includes/database/select.inc @@ -970,7 +970,7 @@ class SelectQuery extends Query implements SelectQueryInterface { /* Implementations of QueryExtendableInterface. */ public function extend($extender_name) { - $override_class = __CLASS__ . $this->connection->driver(); + $override_class = $extender_name . '_' . $this->connection->driver(); if (class_exists($override_class)) { $extender_name = $override_class; } |