Project

General

Profile

Feature #14835 » class.t3lib_userauthgroup.php_Diff.txt

Administrator Admin, 2005-06-22 16:38

 
File difference report generated by CSDiff by ComponentSoftware on 22-06-2005 16:22

Base file: C:\_E-drev\Dokumenter\Typo3\class.t3lib_userauthgroup.php
Compared file: C:\_E-drev\Dokumenter\Typo3\class.t3lib_userauthgroup2.php

835c835,847
< $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', $this->usergroup_table, 'deleted=0 AND hidden=0 AND pid=0 AND uid IN ('.$grList.')'.$lockToDomain_SQL);
---
> $whereSQL = 'deleted=0 AND hidden=0 AND pid=0 AND uid IN ('.$grList.')'.$lockToDomain_SQL;
>
> // Hook for manipulation of the WHERE sql sentence which controls which BE-groups are included
> if (is_array ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauthgroup.php']['fetchGroupQuery'])) {
> foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauthgroup.php']['fetchGroupQuery'] as $classRef) {
> $hookObj = &t3lib_div::getUserObj($classRef);
> if(method_exists($hookObj,'fetchGroupQuery_processQuery')){
> $whereSQL = $hookObj->fetchGroupQuery_processQuery($this, $grList, $idList, $whereSQL);
> }
> }
> }
>
> $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', $this->usergroup_table, $whereSQL);


<--------------------- End of report --------------------->

(1-1/2)