Completed
Pull Request — master (#12)
by
unknown
02:07
created
admin/importwiwimod.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@
 block discarded – undo
42 42
  ***
43 43
  * @param $msg
44 44
  */
45
+/**
46
+ * @param string $msg
47
+ */
45 48
 function showerror($msg)
46 49
 {
47 50
     global $xoopsDB;
Please login to merge, or discard this patch.
admin/importxwords.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@
 block discarded – undo
47 47
  * @param $msg
48 48
  */
49 49
 
50
+/**
51
+ * @param string $msg
52
+ */
50 53
 function showerror($msg)
51 54
 {
52 55
     global $xoopsDB;
Please login to merge, or discard this patch.
admin/functions.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -387,8 +387,8 @@  discard block
 block discarded – undo
387 387
  * save_permissions()
388 388
  * adapted from WF-Downloads
389 389
  * @param $groups
390
- * @param $id
391
- * @param $perm_name
390
+ * @param integer $id
391
+ * @param string $perm_name
392 392
  * @return bool
393 393
  */
394 394
 
@@ -420,10 +420,14 @@  discard block
 block discarded – undo
420 420
 //-- Initial Selector
421 421
 /**
422 422
  * @param $init
423
+ * @param integer $a
423 424
  */
424 425
 function unichr($a) {
425 426
     return mb_convert_encoding(pack("N",$a), mb_internal_encoding(), 'UCS-4BE');
426 427
 }
428
+/**
429
+ * @param integer $init
430
+ */
427 431
 function lx_getinit($init)
428 432
 {  
429 433
     global $init;
Please login to merge, or discard this patch.
blocks/entries_initial.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,8 @@
 block discarded – undo
12 12
 
13 13
 /**
14 14
  * @param $options
15
- * @return array
15
+ * @param integer $a
16
+ * @return string
16 17
  */
17 18
 function uchr($a) {
18 19
     if (is_scalar($a)) $a= func_get_args();
Please login to merge, or discard this patch.
include/functions.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -437,6 +437,11 @@  discard block
 block discarded – undo
437 437
 }
438 438
 
439 439
 //Retrieve moduleoptions equivalent to $Xoopsmoduleconfig
440
+/**
441
+ * @param string $option
442
+ *
443
+ * @return string
444
+ */
440 445
 function lx_getmoduleoption($option, $repmodule='lexikon') {
441 446
     global $xoopsModuleConfig, $xoopsModule;
442 447
     static $tbloptions= Array();
@@ -831,6 +836,7 @@  discard block
 block discarded – undo
831 836
 /**
832 837
  * @author   Monte Ohrt <monte at ohrt dot com>, modified by Amos Robinson
833 838
  *           <amos dot robinson at gmail dot com>
839
+ * @param string $string
834 840
  */
835 841
 function lx_close_tags($string) {
836 842
     // match opened tags
Please login to merge, or discard this patch.