a small step further..
Found where the problem is but cannot fix it
File: administrator/comprofiler/comprofiler.class.php
function addHeadTag ()
Lines 3108
should it not ask "which one is the default language " instead of "if file_exists".
Language File does of course exist but which is the default language of the current website user?
Sorry, I am not a programmer, just starting to understand a bit of the logic there.
AND, I wont give up
Appreciate any help
Here is the code (original)
if ( ! $added[$this->calendarType] ) {
$UElanguagePath = $_CB_framework->getCfg( 'absolute_path' ).'/components/com_comprofiler/plugin/language';
if ( file_exists( $UElanguagePath.'/'.$_CB_framework->getCfg( 'lang' ).'/'.'calendar-locals.js' ) )
{
$calendarLangFile = '/components/com_comprofiler/plugin/language/'.$_CB_framework->getCfg( 'lang' ).'/calendar-locals.js';
} else
{
$calendarLangFile = '/components/com_comprofiler/plugin/language/default_language/calendar-locals.js';
}
}