mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge pull request #5284 from marc1706/ticket/12627
[ticket/12627] Add missing function definition for set_debug_sql_explain
This commit is contained in:
commit
cd84919f1a
3 changed files with 12 additions and 2 deletions
|
@ -108,7 +108,17 @@ abstract class driver implements driver_interface
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
|
public function set_debug_load_time($value)
|
||||||
{
|
{
|
||||||
|
$this->debug_load_time = $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function set_debug_sql_explain($value)
|
||||||
|
{
|
||||||
|
$this->debug_sql_explain = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -498,8 +498,8 @@
|
||||||
.column2,
|
.column2,
|
||||||
.left-box.profile-details {
|
.left-box.profile-details {
|
||||||
float: none;
|
float: none;
|
||||||
width: auto;
|
|
||||||
clear: both;
|
clear: both;
|
||||||
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Polls
|
/* Polls
|
||||||
|
|
Loading…
Add table
Reference in a new issue