site87 Posted November 8, 2018 Share Posted November 8, 2018 Hi Where do we have to do these changes ? need change: protected $query = array( 'type' => 'SELECT', 'select' => array(), 'from' => '', 'join' => array(), 'where' => array(), 'group' => array(), 'having' => array(), 'order' => array(), 'limit' => array('offset' => 0, 'limit' => 0), ); to protected $query = array( 'type' => 'SELECT', 'select' => array(), 'from' => array(), 'join' => array(), 'where' => array(), 'group' => array(), 'having' => array(), 'order' => array(), 'limit' => array('offset' => 0, 'limit' => 0), ); Link to comment Share on other sites More sharing options...
joseantgv Posted November 8, 2018 Share Posted November 8, 2018 55 minutes ago, site87 said: Hi Where do we have to do these changes ? need change: protected $query = array( 'type' => 'SELECT', 'select' => array(), 'from' => '', 'join' => array(), 'where' => array(), 'group' => array(), 'having' => array(), 'order' => array(), 'limit' => array('offset' => 0, 'limit' => 0), ); to protected $query = array( 'type' => 'SELECT', 'select' => array(), 'from' => array(), 'join' => array(), 'where' => array(), 'group' => array(), 'having' => array(), 'order' => array(), 'limit' => array('offset' => 0, 'limit' => 0), ); This code is from \classes\db\DbQuery.php 1 Link to comment Share on other sites More sharing options...
site87 Posted November 9, 2018 Author Share Posted November 9, 2018 Ok thanks ! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now