Hallo
ich habe ebenfalls das gleiche Problem. Hab mich schon gefreut eine Lösung gefunden zu haben.. leider fehlanzeige...
Wenn ich auf Komponenten > CQI Individuelle Icons gehe bekomm ich folgenden Fehler:
Parse error: syntax error, unexpected '=', expecting ')' in /www/htdocs/w0091088/cms/administrator/components/com_customquickicons/admin.customquickicons.php on line 736
Falls es bei der Lösungsfindung hilft, hier mal der Code aus der admin.customquickicons.php:
(Line 736 - 773)
PHP-Code:
function getImageFolders( $basePath = '', &$imgFolders = '' ) {
$folders = array();
if( !$basePath ) {
$basePath = str_replace( '/administrator/', '', JPATH_SITE ) .DS;
}
if( empty( $imgFolders ) || !is_array( $imgFolders ) ) {
$imgFolders = array();
}
// filter folders
if( ( strpos( $basePath, 'instal' ) === false )
&& ( strpos( $basePath, 'mod_' ) === false )
&& ( strpos( $basePath, 'editor' ) === false ) ) {
if( strpos( $basePath, 'image' ) !== false ) {
$folder = str_replace( JPATH_SITE, '', $basePath );
$folder = str_replace( DS, '/', $folder );
$imgFolders[] = $folder;
}
}
if( is_dir( $basePath ) ) {
if( $dh = opendir( $basePath ) ) {
while( ( $file = readdir( $dh ) ) !== false ) {
if( $file != '.' && $file != '..' ) {
if( is_dir( $basePath . $file ) ) {
getImageFolders( $basePath . $file .DS, $imgFolders );
}
}
}
closedir( $dh );
}
}
return $imgFolders;
}
Anmerkung: Bin Joomla Newbie... und PHPmäßig steh ich eher auf dem Stand "Grundkenntnisse" 
(da es sich um ne ähnliche Thematik handelt wollte ich nicht extra einen neuen Thread aufmachen, ich hoffe das ist ok)
Lesezeichen