Completed
Push — 14.2 ( e07840...cec2da )
by Ralf
83:18 queued 52:04
created
admin/inc/class.admin_cmd_check_acl.inc.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@  discard block
 block discarded – undo
20 20
 	/**
21 21
 	 * Constructor
22 22
 	 *
23
-	 * @param array $data=array() default parm from parent class, no real parameters
24 23
 	 */
25 24
 	function __construct($data=array())
26 25
 	{
@@ -30,7 +29,7 @@  discard block
 block discarded – undo
30 29
 	/**
31 30
 	 * give or remove run rights from a given account and application
32 31
 	 *
33
-	 * @param boolean $check_only=false only run the checks (and throw the exceptions), but not the command itself
32
+	 * @param boolean $check_only only run the checks (and throw the exceptions), but not the command itself
34 33
 	 * @return string success message
35 34
 	 */
36 35
 	protected function exec($check_only=false)
Please login to merge, or discard this patch.
calendar/inc/class.calendar_favorite_portlet.inc.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -86,8 +86,6 @@
 block discarded – undo
86 86
 	 * Here we need to handle any incoming data.  Setup is done in the constructor,
87 87
 	 * output is handled by parent.
88 88
 	 *
89
-	 * @param type $id
90
-	 * @param etemplate_new $etemplate
91 89
 	 */
92 90
 	public static function process($content = array())
93 91
 	{
Please login to merge, or discard this patch.
etemplate/inc/class.etemplate_request_cache.inc.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,6 @@
 block discarded – undo
77 77
 	/**
78 78
 	 * Factory method to get a new request object or the one for an existing request
79 79
 	 *
80
-	 * @param string $id=null
81 80
 	 * @return etemplate_request|boolean the object or false if $id is not found
82 81
 	 */
83 82
 	static function read($id=null)
Please login to merge, or discard this patch.
etemplate/inc/class.etemplate_request_files.inc.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,6 @@
 block discarded – undo
77 77
 	/**
78 78
 	 * Factory method to get a new request object or the one for an existing request
79 79
 	 *
80
-	 * @param string $id=null
81 80
 	 * @return etemplate_request|boolean the object or false if $id is not found
82 81
 	 */
83 82
 	static function read($id=null)
Please login to merge, or discard this patch.
filemanager/inc/class.filemanager_favorite_portlet.inc.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -86,8 +86,6 @@
 block discarded – undo
86 86
 	 * Here we need to handle any incoming data.  Setup is done in the constructor,
87 87
 	 * output is handled by parent.
88 88
 	 *
89
-	 * @param type $id
90
-	 * @param etemplate_new $etemplate
91 89
 	 */
92 90
 	public static function process($content = array())
93 91
 	{
Please login to merge, or discard this patch.
infolog/inc/class.infolog_datasource.inc.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,6 @@
 block discarded – undo
82 82
 	 *
83 83
 	 * @param array $element source project element representing an InfoLog entry, $element['pe_app_id'] = info_id
84 84
 	 * @param int $target target project id
85
-	 * @param array $target_data=null data of target-project, atm not used by the infolog datasource
86 85
 	 * @return array/boolean array(info_id,link_id) on success, false otherwise
87 86
 	 */
88 87
 	function copy($element,$target,$extra=null)
Please login to merge, or discard this patch.
infolog/inc/class.infolog_favorite_portlet.inc.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -86,8 +86,6 @@
 block discarded – undo
86 86
 	 * Here we need to handle any incoming data.  Setup is done in the constructor,
87 87
 	 * output is handled by parent.
88 88
 	 *
89
-	 * @param type $id
90
-	 * @param etemplate_new $etemplate
91 89
 	 */
92 90
 	public static function process($content = array())
93 91
 	{
Please login to merge, or discard this patch.
phpgwapi/inc/adodb/session/crypt.inc.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -1,6 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 //	 Session Encryption by Ari Kuorikoski <[email protected]>
3 3
 class MD5Crypt{
4
+
5
+		/**
6
+		 * @param string $txt
7
+		 */
4 8
 		function keyED($txt,$encrypt_key)
5 9
 		{
6 10
 				$encrypt_key = md5($encrypt_key);
Please login to merge, or discard this patch.
phpgwapi/inc/class.auth_cas.inc.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 	 *
61 61
 	 * @param string $old_passwd must be cleartext or empty to not to be checked
62 62
 	 * @param string $new_passwd must be cleartext
63
-	 * @param int $account_id=0 account id of user whose passwd should be changed
63
+	 * @param int $account_id account id of user whose passwd should be changed
64 64
 	 * @return boolean true if password successful changed, false otherwise
65 65
 	 */
66 66
 	function change_password($old_passwd, $new_passwd, $account_id=0)
Please login to merge, or discard this patch.