Kunena 6.3.0 released

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

Themen, die in diesen Bereich verschoben wurden, gelten allgemein als beendet. Falls es dazu noch zusätzliche Fragen gibt, können diese zwar noch gestellt werden, aber diese alten Themen sollten auf keinen Fall wieder auferstehen, um neue Probleme zu erörtern.
Eröffnet dazu bitte ein eigenes neues Thema.

Solved Kunena Latest Module: Absatz vor Beitrags Anzeige.

More
11 years 11 months ago - 11 years 11 months ago #1 by Mosios
Hi,
wie mache ich einen Zeilenumbruch vor die Beitrags Anzeige?




Ich weiß das es um sh_postcount geht, aber wie bekomme ich da einen Zeilenumbruch hinein?
Code:
<?php if ($this->params->get ( 'sh_sticky' )) { if ($item->ordering) { echo '<img src="' . JURI::root () . 'modules/mod_kunenalatest/tmpl/images/sticky.png" alt="' . JText::_ ( 'MOD_KUNENALATEST_STICKY_TOPIC' ) . '" title="' . JText::_ ( 'MOD_KUNENALATEST_STICKY_TOPIC' ) . '" />'; } } if ( $this->params->get ( 'choosemodel' ) != 'latestposts' && $this->params->get ( 'choosemodel' ) != 'latesttopics' ): echo CKunenaLink::GetThreadLink ( 'view', $item->catid, $item->id, JString::substr ( htmlspecialchars ( $item->subject ), '0', $this->params->get ( 'titlelength' ) ), JString::substr ( htmlspecialchars ( KunenaParser::stripBBCode($item->message) ), '0', $this->params->get ( 'messagelength' ) ), 'follow' ); else : if ($this->topic_ordering == 'ASC') : echo CKunenaLink::GetThreadPageSpecialLink ( 'view', intval($item->catid), intval($item->thread), $threadPages, intval($this->kunena_config->messages_per_page), JString::substr ( htmlspecialchars ( $item->subject ), '0', $this->params->get ( 'titlelength' ) ), intval($item->id), '','', JString::substr ( htmlspecialchars ( KunenaParser::stripBBCode($item->message) ), '0', $this->params->get ( 'messagelength' ) ) ); if ( $this->params->get ( 'sh_postcount' ) ) : echo ' ('.$item->msgcount.' '.JText::_('MOD_KUNENALATEST_MSG').')'; endif; else : echo CKunenaLink::GetThreadPageSpecialLink ( 'view', intval($item->catid), intval($item->thread), 1, intval($this->kunena_config->messages_per_page), JString::substr ( htmlspecialchars ( $item->subject ), '0', $this->params->get ( 'titlelength' ) ), intval($item->id), '','', JString::substr ( htmlspecialchars ( KunenaParser::stripBBCode($item->message) ), '0', $this->params->get ( 'messagelength' ) )); if ( $this->params->get ( 'sh_postcount' ) ): echo ' ('.$item->msgcount.' '.JText::_('MOD_KUNENALATEST_MSG').')'; endif; endif; endif; if ($item->unread) { echo '<sup class="knewchar">(' . JText::_($this->params->get ( 'unreadindicator' )) . ")</sup>"; } if ($this->params->get ( 'sh_favorite' )) { if ($item->favcount) { if ($item->myfavorite) { echo '<img class="favoritestar" src="'.$this->ktemplate->getImagePath('icons/favoritestar.png').'" alt="' . JText::_ ( 'MOD_KUNENALATEST_FAVORITE' ) . '" title="' . JText::_ ( 'MOD_KUNENALATEST_FAVORITE' ) . '" />'; } else { echo '<img class="favoritestar-grey" src="'.$this->ktemplate->getImagePath('icons/favoritestar-grey.png').'" alt="' . JText::_ ( 'MOD_KUNENALATEST_FAVORITE' ) . '" title="' . JText::_ ( 'MOD_KUNENALATEST_FAVORITE' ) . '" />'; } } } if ($this->params->get ( 'sh_locked' )) { if ($item->locked) { echo '<img src="'.$this->ktemplate->getImagePath('icons/lock_sm.png').'" alt="' . JText::_ ( 'MOD_KUNENALATEST_LOCKED_TOPIC' ) . '" title="' . JText::_ ( 'MOD_KUNENALATEST_LOCKED_TOPIC' ) . '" />'; } } ?>

MfG
Mosios
Attachments:
Last edit: 11 years 11 months ago by Mosios.

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

More
11 years 11 months ago - 11 years 11 months ago #2 by Mosios
Lösung:

if ( $this->params->get ( 'sh_postcount' ) ): echo '<br />('.$item->msgcount.' '.JText::_('MOD_KUNENALATEST_MSG').')';

MfG
Mosios
Last edit: 11 years 11 months ago by rich. Reason: Themenicon geändert

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

Time to create page: 0.360 seconds