@@ -20,7 +20,6 @@ discard block |
||
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 |
||
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) |
@@ -86,8 +86,6 @@ |
||
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 | { |
@@ -77,7 +77,6 @@ |
||
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) |
@@ -77,7 +77,6 @@ |
||
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) |
@@ -86,8 +86,6 @@ |
||
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 | { |
@@ -82,7 +82,6 @@ |
||
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) |
@@ -86,8 +86,6 @@ |
||
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 | { |
@@ -1,6 +1,10 @@ |
||
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); |
@@ -60,7 +60,7 @@ |
||
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) |