Jump to content

DawPi

Clients
  • Posts

    8,335
  • Joined

  • Last visited

  • Days Won

    19

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by DawPi

  1. You can find it in the conf_global.php file under sql_tbl_prefix option.

     

    Ouch, you meant prefixes for specific apps. core_ is for everything under the System part. forums_ - forums app, gallery_ gallery app. It's an app key in most cases.

  2. File: applications\core\extensions\core\Queue\MoveMembers.php

    Is:

    	/**
    	 * Return the query
    	 *
    	 * @param	string	$select		What to select
    	 * @param	array	$data		Queue data
    	 * @param	int		$offset		Offset to use (FALSE to not apply limit)
    	 * @return	\IPS\Db\Select
    	 */
    	protected function getQuery( $select, $data, $applyLimit=FALSE )
    	{
    		return \IPS\Db::i()->select( $select, 'core_members', $data['where'], 'core_members.member_id ASC', ( $offset !== FALSE ) ? array( $offset, \IPS\REBUILD_SLOW ) : array() )

    Should be:

    	/**
    	 * Return the query
    	 *
    	 * @param	string	$select		What to select
    	 * @param	array	$data		Queue data
    	 * @param	int		$offset		Offset to use (FALSE to not apply limit)
    	 * @return	\IPS\Db\Select
    	 */
    	protected function getQuery( $select, $data, $applyLimit=FALSE )
    	{
    		return \IPS\Db::i()->select( $select, 'core_members', $data['where'], 'core_members.member_id ASC', ( $applyLimit !== FALSE ) ? array( $applyLimit, \IPS\REBUILD_SLOW ) : array() )

     

×
×
  • Create New...