Project

General

Profile

Bug #53682 » php-5.5.6.patch

Philipp Gampe, 2013-12-07 13:01

View differences:

typo3/sysext/backend/Classes/Toolbar/ClearCacheToolbarItem.php
*
* @param \TYPO3\CMS\Backend\Controller\BackendController $backendReference TYPO3 backend object reference
*/
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController &$backendReference = NULL) {
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController $backendReference = NULL) {
$this->backendReference = $backendReference;
$this->cacheActions = array();
$this->optionValues = array('all', 'pages');
typo3/sysext/backend/Classes/Toolbar/LiveSearchToolbarItem.php
*
* @param \TYPO3\CMS\Backend\Controller\BackendController $backendReference TYPO3 backend object reference
*/
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController &$backendReference = NULL) {
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController $backendReference = NULL) {
$this->backendReference = $backendReference;
}
typo3/sysext/backend/Classes/Toolbar/ShortcutToolbarItem.php
*
* @param \TYPO3\CMS\Backend\Controller\BackendController $backendReference TYPO3 backend object reference
*/
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController &$backendReference = NULL) {
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController $backendReference = NULL) {
if (TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_AJAX) {
$GLOBALS['LANG']->includeLLFile('EXT:lang/locallang_misc.xlf');
// Needed to get the correct icons when reloading the menu after saving it
typo3/sysext/backend/Classes/Toolbar/ToolbarItemHookInterface.php
*
* @param \TYPO3\CMS\Backend\Controller\BackendController $backendReference TYPO3 backend object reference
*/
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController &$backendReference = NULL);
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController $backendReference = NULL);
/**
* Checks whether the user has access to this toolbar item
typo3/sysext/opendocs/Classes/Controller/OpendocsController.php
*
* @param \TYPO3\CMS\Backend\Controller\BackendController TYPO3 backend object reference
*/
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController &$backendReference = NULL) {
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController $backendReference = NULL) {
$GLOBALS['LANG']->includeLLFile('EXT:opendocs/locallang_opendocs.xlf');
$this->backendReference = $backendReference;
$this->loadDocsFromUserSession();
typo3/sysext/sys_action/Classes/ActionToolbarMenu.php
/**
* Constructor
*/
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController &$backendReference = NULL) {
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController $backendReference = NULL) {
$GLOBALS['LANG']->includeLLFile('EXT:sys_action/locallang.xlf');
$this->backendReference = $backendReference;
}
typo3/sysext/workspaces/Classes/ExtDirect/WorkspaceSelectorToolbarItem.php
*
* @param \TYPO3\CMS\Backend\Controller\BackendController TYPO3 backend object reference
*/
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController &$backendReference = NULL) {
public function __construct(\TYPO3\CMS\Backend\Controller\BackendController $backendReference = NULL) {
$this->backendReference = $backendReference;
$this->changeWorkspace = GeneralUtility::_GP('changeWorkspace');
$this->changeWorkspacePreview = GeneralUtility::_GP('changeWorkspacePreview');
(2-2/2)