File: phpbb/db/driver/factory.php
Unmodified
Added
Modified
Removed
Line 318 | Line 318 |
---|
*/ public function sql_nextid() {
|
*/ public function sql_nextid() {
|
return $this->get_driver()->sql_nextid();
| return $this->get_driver()->sql_last_inserted_id(); }
/** * {@inheritdoc} */ public function sql_last_inserted_id() { return $this->get_driver()->sql_last_inserted_id();
|
}
/**
| }
/**
|
Line 463 | Line 471 |
---|
public function sql_quote($msg) { return $this->get_driver()->sql_quote($msg);
|
public function sql_quote($msg) { return $this->get_driver()->sql_quote($msg);
|
| }
/** * {@inheritDoc} */ public function clean_query_id($query_id) { return $this->get_driver()->clean_query_id($query_id);
|
} }
| } }
|