Bug #2208 ยป 2208.patch
| administrator/components/com_comprofiler/plugin.foundation.php | ||
|---|---|---|
|
break;
|
||
|
case 'hits':
|
||
|
case 'vote':
|
||
|
if ( checkJversion() == 1 ) {
|
||
|
if ( checkJversion() >= 1 ) {
|
||
|
$contentConfig = &JComponentHelper::getParams( 'com_content' );
|
||
|
return $contentConfig->get( 'show_' . $config );
|
||
|
}
|
||
|
break;
|
||
|
case 'dirperms':
|
||
|
case 'fileperms':
|
||
|
if ( checkJversion() == 1 ) {
|
||
|
if ( checkJversion() >= 1 ) {
|
||
|
return ''; //TBD: these two missing configs should one day go to CB
|
||
|
}
|
||
|
break;
|
||