diff --git a/core/lib/class.plx.motor.php b/core/lib/class.plx.motor.php index 0670cec09..3c6a97786 100644 --- a/core/lib/class.plx.motor.php +++ b/core/lib/class.plx.motor.php @@ -841,7 +841,7 @@ public function getCommentaires($motif,$ordre='sort',$start=0,$limite=false,$pub $array[$k] = $this->parseCommentaire(PLX_ROOT.$this->aConf['racine_commentaires'].$v); # hiérarchisation et indentation des commentaires seulement sur les écrans requis - if( !(defined('PLX_ADMIN') OR defined('PLX_FEED')) OR preg_match('/comment_new/',basename($_SERVER['SCRIPT_NAME']))) { + if( !(defined('plxAdmin::PLX_ADMIN') OR defined('plxFeed::PLX_FEED')) OR preg_match('/comment_new/',basename($_SERVER['SCRIPT_NAME']))) { $array = $this->parentChildSort_r('index', 'parent', $array); } diff --git a/core/lib/class.plx.record.php b/core/lib/class.plx.record.php index a835bc9e1..e96d93560 100644 --- a/core/lib/class.plx.record.php +++ b/core/lib/class.plx.record.php @@ -29,7 +29,7 @@ public function __construct(&$array) { /** * Méthode qui incrémente judicieusement la variable $i * - * @return booléen + * @return boolean * @author Anthony GUÉRIN **/ public function loop() { diff --git a/core/lib/class.plx.show.php b/core/lib/class.plx.show.php index 507a67fac..f51987641 100644 --- a/core/lib/class.plx.show.php +++ b/core/lib/class.plx.show.php @@ -468,7 +468,7 @@ public function catName($type='') { * * @param format format d'affichage (variables: #img_url, #img_thumb_url, #img_alt, #img_title) * @param echo si à VRAI affichage à l'écran - * @return stdout + * @return string * @scope home,categorie,article,tags,archives * @author Stephane F, Philippe-M **/ @@ -1094,10 +1094,8 @@ public function comIndex() { } /** - * Méthode qui retourne le niveau d'indentation du commentaire - * - * @return integer numéro du niveau d'indentation du commentaire - * @scope article + * Get comment indent number + * @return integer level number for comment indentation * @author Stephane F. **/ public function comNumLevel() { @@ -1105,17 +1103,16 @@ public function comNumLevel() { } /** - * Méthode qui formate et affiche le niveau d'indentation du commentaire - * - * @param class nom de la classe css servant à l'indentation des commentaires - * @scope article - * @author Stephane F., Jerry Wham + * Add CSS class fort comments indentation + * @param class css class used to indent comments + * @author Stephane F., Jerry Wham, Pedro "P3ter" CADETE **/ public function comLevel($class='level') { - if($this->comNumLevel() > 5) - echo $class.'-'.$this->comNumLevel().' '.$class.'-max'; + $numLevel = $this->comNumLevel(); + if($numLevel > 5) + echo $class.'-'.$numLevel.' '.$class.'-max'; else - echo $class.'-'.$this->comNumLevel(); + echo $class.'-'.$numLevel; } /** diff --git a/readme/CHANGELOG b/readme/CHANGELOG index ad12b693a..b42c91c6d 100644 --- a/readme/CHANGELOG +++ b/readme/CHANGELOG @@ -2,4 +2,5 @@ [+] #371 Check PluXml update using javascript if "curl" or "file_get_contents" can not be used (bazooka07) FIX #365 plxUtils::getLangs() optimisations (bazooka07) FIX #367 plxUtils::sendmail() minor correction (bazooka07) +FIX #369 Comments indentation does not work on frontend (P3ter) FIX #372 [i18n] missing L_CONFIG_ADVANCED_LOSTPASSWORD in oc, es, pl, pt, ro, ru, it (P3ter) \ No newline at end of file