Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0.

The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.

This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.

The topics in this category are for historical interest only. Owing to the structural differences between K 1.6 and K 1.7, these ideas in these topics will not work with later versions and, for that reason, the topics are locked.

Question zodiacs instead of birthdate

More
16 years 11 months ago - 16 years 11 months ago #20573 by guerilla
open view.php and find this:
Code:
$msg_birthdate = isset($fbIcons['msgbirthdate']) ? '<img src="'. KUNENA_URLICONSPATH . $fbIcons['msgbirthdate'] . '" border="0" alt="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'" />' : ' '._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'';

and chamge to this:
Code:
// ZODIACS BY GOLGE AKA GERILLA START list($yil, $ay, $gun) = split('-', $userinfo->birthdate); $tarih = $ay . $gun; if ($tarih >= 321 && $tarih<= 420) { $burc = '<img src="'. KUNENA_URLICONSPATH . 'burclar/koc.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 1123 && $tarih<=1221) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/yay.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 522 && $tarih<=621) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/ikizler.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 723 && $tarih<=823) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/aslan.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 923 && $tarih<=1023) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/terazi.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 1024 && $tarih<=1122) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/akrep.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 121 && $tarih<=218) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/kova.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 824 && $tarih<=922) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/basak.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 219 && $tarih<=320) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/balik.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 622 && $tarih<=722) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/yengec.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 1222 && $tarih<=120) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/oglak.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } if ($tarih >= 421 && $tarih<=521) { $burc ='<img src="'. KUNENA_URLICONSPATH . 'burclar/boga.png" title="'._KUNENA_PROFILE_BIRTHDAY.': '.$birthday.'"/>'; } $msg_birthdate = $burc; //ZODIACS BY GOLGE AKA GERILLA END

finally copy burclar folder to under your templates icons folder
Last edit: 16 years 11 months ago by guerilla.

Please Log in or Create an account to join the conversation.

Time to create page: 0.263 seconds