[Fusionforge-commits] r18364 - trunk/src/www/include

Marc-Etienne VARGENAU vargenau at fusionforge.org
Sat Nov 2 19:24:50 CET 2013


Author: vargenau
Date: 2013-11-02 19:24:50 +0100 (Sat, 02 Nov 2013)
New Revision: 18364

Modified:
   trunk/src/www/include/Layout.class.php
Log:
Update PHP Doc

Modified: trunk/src/www/include/Layout.class.php
===================================================================
--- trunk/src/www/include/Layout.class.php	2013-11-02 18:24:15 UTC (rev 18363)
+++ trunk/src/www/include/Layout.class.php	2013-11-02 18:24:50 UTC (rev 18364)
@@ -254,7 +254,7 @@
 	 * headerFavIcon(), headerRSS(), headerSearch(), headerCSS(), or
 	 * headerJS() to adapt your theme.
 	 *
-	 * @param	array	Header parameters array
+	 * @param	array	$params		Header parameters array
 	 */
 	function headerStart($params) {
 		$this->headerHTMLDeclaration();
@@ -302,7 +302,7 @@
 	/**
 	 * headerTitle() - creates the <title> header
 	 *
-	 * @param	array	Header parameters array
+	 * @param	array	$params		Header parameters array
 	 */
 	function headerTitle($params) {
 		echo $this->navigation->getTitle($params);
@@ -556,7 +556,7 @@
 	/**
 	 * boxTop() - Top HTML box.
 	 *
-	 * @param	string	Box title
+	 * @param	string	$title	Box title
 	 * @return	string	the html code
 	 */
 	function boxTop($title) {
@@ -581,7 +581,7 @@
 	/**
 	 * boxMiddle() - Middle HTML box.
 	 *
-	 * @param	string	Box title
+	 * @param	string	$title	Box title
 	 * @return	string	The html code
 	 */
 	function boxMiddle($title) {
@@ -617,7 +617,7 @@
 	/**
 	 * boxGetAltRowStyle() - Get an alternating row style for tables.
 	 *
-	 * @param	int	Row number
+	 * @param	int	$i	Row number
 	 * @return	string	the class code
 	 */
 	function boxGetAltRowStyle($i) {
@@ -1267,7 +1267,7 @@
 	}
 
 	function getForumPic($title = '', $alt = '') {
-		return $this->getPicto('ic/forum20g.png', $title, $alt);;
+		return $this->getPicto('ic/forum20g.png', $title, $alt);
 	}
 
 	function getDocmanPic($title = '', $alt = '') {




More information about the Fusionforge-commits mailing list