Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Если отсутствует подключение db, то панель sql пуста. Даже несмотря на наличие других подключений. #91

Open
RussianPenguin opened this issue Sep 9, 2013 · 0 comments
Assignees

Comments

@RussianPenguin
Copy link

Проблема в этом куске кода

class YiiDebugToolbarPanelSql extends YiiDebugToolbarPanel
{
//....

public function  __construct($owner = null)
{
    parent::__construct($owner);

    try
    {
        Yii::app()->db;
    }
    catch (Exception $e)
    {
        $this->_dbConnections = false;
    }
}
//....

}

При этом все остальные участки кода ориентируются на getDbConnectionsCount()

@ghost ghost assigned malyshev Dec 3, 2013
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants