Jump to content

Accès back-office et site


site87

Recommended Posts

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

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

  • Like 1
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...