Kalendar Mx 1.4 Block question

Begonnen von MiLLion, 02 Mai 2005, 08:09:20

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

MiLLion

Hi, i have got Kalender Mx 1.4 on my phpnuke site, i use the combi block for it. But when i use it the blockname says "Korskalenderen"! But in the block admin menu it says Kalender, it wont change! Can you help me? Thanks

jubilee

Hello !
That is true.
Normally the blockname was taken from the language-File.
To prevent this and take the blockname from the block-settings in the admin-menue
edit the file blocks/block-Calendar_combi.php row 289-298
change this :


/// Der Blocktitel wird über die Sprachdatei des Kalenders gesteuert,
/// soll statt dessen die Einstellung des Adminmenüs verwendet werden,
/// einfach die folgenden Zeilen löschen oder auskommentieren
if ($ievents==0){
$blockfiletitle = _CALNAME;
}
else {
if (empty($icount)) {$icount="";}
$blockfiletitle = _CALNEXT." $icount "._CALLISTDESCRIPTION2;
}



to this :


/// Der Blocktitel wird über die Sprachdatei des Kalenders gesteuert,
/// soll statt dessen die Einstellung des Adminmenüs verwendet werden,
/// einfach die folgenden Zeilen löschen oder auskommentieren
/* if ($ievents==0){
$blockfiletitle = _CALNAME;
}
else {
if (empty($icount)) {$icount="";}
$blockfiletitle = _CALNEXT." $icount "._CALLISTDESCRIPTION2;
}
*/



save and upload to the blocks-directory.
Now the blockname should be equal to the settings in the admin-menue
greetings
jubilee

MiLLion

Thank you, it worked just as you said  ;D Good job with the Kalender, is love it!

MiLLion