Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] 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

Les sujets sont déplacés dans ce domaine ne sont fermés parce qu'ils se rapportent à des versions non prises en charge de Kunena.

Question Une majuscule pour la première lettre du titre d'un sujet/topic

  • PaRaDiSiAk
  • PaRaDiSiAk's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • NO LONGER USED - DELETE THIS ACCOUNT PLEASE
More
17 years 4 weeks ago - 16 years 9 months ago #10476 by PaRaDiSiAk
Sur phpBB, la ligne de code suivante permettait de transformer la première lettre du titre d'un sujet/topic en majuscule :
Code:
# #-----[ OPEN ]------------------------------------------ # includes/functions_posting.php # #-----[ FIND ]------------------------------------------ # function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $update_message = true) { global $db, $auth, $user, $config, $phpEx, $template, $phpbb_root_path; # #-----[ AFTER, ADD ]------------------------------------------ # // Mettre en majuscule la première lettre du titre d'un topic $subject = ucfirst($subject); // Fin # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ #

Comment fait-on pour Kunena ? Quelqu'un pourrait donner la soluce ? Merci à tous !
Last edit: 16 years 9 months ago by PaRaDiSiAk.

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

  • PaRaDiSiAk
  • PaRaDiSiAk's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • NO LONGER USED - DELETE THIS ACCOUNT PLEASE
More
17 years 2 days ago #14118 by PaRaDiSiAk
Il s'est passé un mois et je n'ai toujours pas trouvé de soluce.
Vraiment personne n'a une idée ?

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

More
17 years 2 days ago - 17 years 2 days ago #14130 by sozzled
Salut PaRaDiSiAk, :) C'est une idée intéressante. Il aurait peut-être plus de chance si tu postes ta question dans l'un des conseils de langue anglaise. Je sais pas si cela peut se faire avec Kunena. Probablement pas.
Last edit: 17 years 2 days ago by sozzled.

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

More
17 years 1 day ago #14162 by lavsteph
Bonjour,

je vais faire remonter l'information auprès de développeurs pour savoir si cela est possible. ;)

Manager French translation
The following user(s) said Thank You: virtuader

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

  • PaRaDiSiAk
  • PaRaDiSiAk's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • NO LONGER USED - DELETE THIS ACCOUNT PLEASE
More
16 years 9 months ago #24991 by PaRaDiSiAk
Merci pour vos messages !

lavsteph, tu nous tiens au courant sur ce topic ?

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

More
16 years 9 months ago - 16 years 9 months ago #24998 by @quila
Hi PaRaDiSiAk,

Remplacer -> Par

components / com_kunena / template / default_ex /

message.php ligne 77

<?php echo $msg_subject; ?> -> <?php echo ucfirst($msg_subject); ?>

view.php ligne 409

<?php echo $jr_topic_title; ?> -> <?php echo ucfirst($jr_topic_title); ?>

fb_pathway.php ligne 69

$jr_path_menu[] =$jr_topic_title; -> $jr_path_menu[] = ucfirst($jr_topic_title);

flat.php ligne 236

kunena_htmlspecialchars(stripslashes($leaf->subject)) -> ucfirst(kunena_htmlspecialchars(stripslashes($leaf->subject)))

listcat.php ligne 575

$latestsubject -> ucfirst($latestsubject)

components / com_kunena / template / default /

fb_sub_category_list.php ligne 417

kunena_htmlspecialchars(stripslashes($latestsubject)) -> ucfirst(kunena_htmlspecialchars(stripslashes($latestsubject)))

components / com_kunena / template / default / plugin / stats /

stats.php ligne 148

kunena_htmlspecialchars(stripslashes($toptitle->subject)) -> ucfirst(kunena_htmlspecialchars(stripslashes($toptitle->subject)))


C'est tout !

Regards
Last edit: 16 years 9 months ago by @quila.

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

Time to create page: 0.232 seconds