Passed
Push — development ( f44b13...fa29db )
by Mirco
01:47
created
htdocs/lib/sqldebugger.inc.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -329,6 +329,9 @@  discard block
 block discarded – undo
329 329
     exit;
330 330
 }
331 331
 
332
+/**
333
+ * @param string $sql
334
+ */
332 335
 function sqldbg_strip_temptable($sql)
333 336
 {
334 337
     $start = mb_strpos(mb_strtoupper($sql), 'SELECT ');
@@ -340,6 +343,9 @@  discard block
 block discarded – undo
340 343
     return mb_substr($sql, $start);
341 344
 }
342 345
 
346
+/**
347
+ * @param string $sql
348
+ */
343 349
 function sqldbg_strip_from($sql)
344 350
 {
345 351
     $start = mb_strpos(mb_strtoupper($sql), 'FROM ');
@@ -351,6 +357,9 @@  discard block
 block discarded – undo
351 357
     return 'SELECT * ' . mb_substr($sql, $start);
352 358
 }
353 359
 
360
+/**
361
+ * @param string $sql
362
+ */
354 363
 function sqldbg_insert_nocache($sql)
355 364
 {
356 365
     if (mb_strtoupper(mb_substr($sql, 0, 7)) == 'SELECT ') {
Please login to merge, or discard this patch.
htdocs/lib2/imagebmp.inc.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -468,6 +468,7 @@  discard block
 block discarded – undo
468 468
 
469 469
 /**
470 470
  * @param integer $byte
471
+ * @param integer $len
471 472
  */
472 473
 function RetBits($byte,$start,$len)
473 474
 {
@@ -525,6 +526,9 @@  discard block
 block discarded – undo
525 526
         }
526 527
 
527 528
 
529
+/**
530
+ * @param integer $d
531
+ */
528 532
 function decbin8($d)
529 533
 {
530 534
 return decbinx($d,8);
Please login to merge, or discard this patch.
htdocs/lib2/search/ftsearch.inc.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -485,6 +485,9 @@
 block discarded – undo
485 485
     sql_free_result($rs);
486 486
 }
487 487
 
488
+/**
489
+ * @param integer $object_type
490
+ */
488 491
 function ftsearch_delete_entries($object_type, $object_id, $cache_id)
489 492
 {
490 493
     sql("DELETE FROM `search_index` WHERE `object_type`='&1' AND `cache_id`='&2'", $object_type, $cache_id);
Please login to merge, or discard this patch.
htdocs/src/Oc/SmartyPlugins/prefilter.t.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -282,6 +282,9 @@
 block discarded – undo
282 282
     return $start;
283 283
 }
284 284
 
285
+/**
286
+ * @param integer $line
287
+ */
285 288
 function smarty_prefilter_t_gettext($message, $attrs, &$smarty, $line)
286 289
 {
287 290
     global $opt, $translate;
Please login to merge, or discard this patch.