Kunena 6.2.5 & module Kunena Latest 6.0.7 released

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

Themen, die in diesen Bereich verschoben wurden, gelten allgemein als beendet. Falls es dazu noch zusätzliche Fragen gibt, können diese 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.

Question [erledigt] HTML über dem Forum

More
14 years 4 months ago - 14 years 2 months ago #1 by Krieger
Hallo zusammen,

Ich suche schon verzweifelt nach einer Lösung. Da dieser Fehler bisher nie aufgetaucht war, muss ich doch mit Hilfe der Community versuchen es zu lösen.

Ich werden kurz auszugsweise den HTML-Code der über der Hauptseite steht reinschreiben.
Code:
emplate tags from any string you hand it over * It will emulate some kind of SAX parsing by calling start-, end- and CData-handlers. * * @abstract * @package patTemplate * @subpackage Readers * @author Stephan Schmidt */ class patTemplate_Reader extends patTemplate_Module { /** * reference to the patTemplate object that instantiated the module * * @access protected * @var object */ var $_tmpl; /** * stack for all open elements * @access private * @var array */ var $_elStack; /** * stack for all open templates * @access private * @var array */ var $_tmplStack; /** * character data * @access private * @var array */ var $_data; /** * tag depth * @access private * @var integer */ var $_depth; /** * templates that have been found * @access protected * @var array */ var $_templates = array(); /** * path to the template * @access protected * @var array */ var $_path = array(); /** * start tag for variables * @access private * @var string */ var $_startTag; /** * end tag for variables * @access private * @var string */ var $_endTag; /** * default attributes * * @access private * @var array */ var $_defaultAtts = array(); /** * root attributes * * This is used when reading the template content * from an external file. * * @access private * @var array */ var $_rootAtts = array(); /** * inherit attributes * * @access private * @var array */ var $_inheritAtts = array(); /** * name of the first template that has been found * * @access private * @var string */ var $_root = null; /** * all data that has been processed * * @access private * @var string */ var $_processedData = null; /** * current input * * @access private * @var string */ var $_currentInput = null; /** * all loaded functions * * @access private * @var array */ var $_functions = array(); /** * function aliases * * @access private * @var array */ var $_funcAliases = array(); /** * options * * @access private * @var array */ var $_options = array(); /** * reader is in use * * @access private * @var boolean */ var $_inUse = false; /** * set a reference to the patTemplate object that instantiated the reader * * @access public * @param object patTemplate object */ function setTemplateReference( &$tmpl ) { $this->_tmpl = &$tmpl; } /** * read templates from any input * * @abstract must be implemented in the template readers * @param mixed input to read from. * This can be a string, a filename, a resource or whatever the derived class needs to read from * @param array options, not implemented in current versions, but future versions will allow passing of options * @return array template structure */ function readTemplates( $input, $options = array() ) { return array(); } /** * load template from any input * * If the a template is loaded, the content will not get * analyzed but the whole content is returned as a string. * * @abstract must be implemented in the template readers * @param mixed input to load from. * This can be a string, a filename, a resource or whatever the derived class needs to read from * @param array options, not implemented in current versions, but future versions will allow passing of options * @return string template content */ function loadTemplate( $input, $options = array() ) { return $input; } /** * set options * * @access public * @param array array containing options */ function setOptions( $options ) { $this->_startTag = $options['startTag']; $this->_endTag = $options['endTag']; $this->_options = $options; if (isset($options['functionAliases'])) { $this->_funcAliases = $options['functionAliases']; } array_map('strtolower', $this->_funcAliases); } /** * add an alias for a function * * @access public * @param string alias * @param string function name */ function addFunctionAlias($alias, $function) { $this->_funcAliases[strtolower($alias)] = $functio..... [b]und so weiter[/b]

Anscheinden formatiert er bestimmte Zeilen nicht richtig. Ich vermute, dass es irgendwie mit dem Template zu tun haben muss.

Wäre schön, wenn ihr mir weiterhelfen könnt.

Viele Grüße Krieger
Last edit: 14 years 2 months ago by rich.

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

More
14 years 4 months ago #2 by Krieger
Replied by Krieger on topic Re:HTML über dem Forum
Okay habe den Fehler gefunden. Lag daran, dass hier ein Templatefehler vorlag.
Am schnellsten repariert man ihn durch ein erneutes Aufspielen der Joomla-Files.

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

Time to create page: 0.312 seconds