Completed
Push — update/search-remove-front-bul... ( 181d2f )
by
unknown
12:11
created
modules/latex.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
 	return latex_render( $latex, $fg, $bg, $s );
59 59
 }
60 60
 
61
+/**
62
+ * @param string $color
63
+ */
61 64
 function latex_get_default_color( $color, $default_color = 'ffffff' ) {
62 65
 	global $themecolors;
63 66
 	return isset($themecolors[$color]) ? $themecolors[$color] : $default_color;
Please login to merge, or discard this patch.
modules/likes.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -332,6 +332,9 @@
 block discarded – undo
332 332
 <?php
333 333
 	}
334 334
 
335
+	/**
336
+	 * @param string $option
337
+	 */
335 338
 	function admin_likes_get_option( $option ) {
336 339
 		if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
337 340
 			$option_setting = get_blog_option( get_current_blog_id(), $option, 'on' );
Please login to merge, or discard this patch.
modules/markdown/easy-markdown.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -504,6 +504,9 @@
 block discarded – undo
504 504
 		) );
505 505
 	}
506 506
 
507
+	/**
508
+	 * @param string $content
509
+	 */
507 510
 	protected function comment_hash( $content ) {
508 511
 		return 'c-' . substr( md5( $content ), 0, 8 );
509 512
 	}
Please login to merge, or discard this patch.
modules/notes.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@
 block discarded – undo
48 48
 		add_action( 'init', array( &$this, 'action_init' ) );
49 49
 	}
50 50
 
51
+	/**
52
+	 * @param string $file
53
+	 */
51 54
 	function wpcom_static_url($file) {
52 55
 		$i = hexdec( substr( md5( $file ), -1 ) ) % 2;
53 56
 		$url = 'http://s' . $i . '.wp.com' . $file;
Please login to merge, or discard this patch.
modules/protect/math-fallback.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 		/**
27 27
 		 * Verifies that a user answered the math problem correctly while logging in.
28 28
 		 *
29
-		 * @return bool Returns true if the math is correct
29
+		 * @return boolean|null Returns true if the math is correct
30 30
 		 * @throws Error if insuffient $_POST variables are present.
31 31
 		 * @throws Error message if the math is wrong
32 32
 		 */
Please login to merge, or discard this patch.
modules/publicize.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -266,6 +266,9 @@  discard block
 block discarded – undo
266 266
 		return trim( preg_replace( '#<p>\s*</p>#i', '', $new_string ) );
267 267
 	}
268 268
 
269
+	/**
270
+	 * @return integer
271
+	 */
269 272
 	function remove_innermost_last_child( $node, &$node_removed_from ) {
270 273
 		$node_removed_from = $node;
271 274
 
@@ -308,6 +311,9 @@  discard block
 block discarded – undo
308 311
 		return str_replace( $search, $replace, $string );
309 312
 	}
310 313
 
314
+	/**
315
+	 * @param string $message
316
+	 */
311 317
 	public static function sanitize_message( $message ) {
312 318
 		$message = preg_replace( '@<(script|style)[^>]*?>.*?</\\1>@si', '', $message );
313 319
 		$message = wp_kses( $message, array() );
Please login to merge, or discard this patch.
modules/publicize/ui.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -261,6 +261,9 @@
 block discarded – undo
261 261
 		</div><?php
262 262
 	}
263 263
 
264
+	/**
265
+	 * @param string $service_name
266
+	 */
264 267
 	public static function options_page_other( $service_name ) {
265 268
 		// Nonce check
266 269
 		check_admin_referer( "options_page_{$service_name}_" . $_REQUEST['connection'] );
Please login to merge, or discard this patch.
modules/sharedaddy/sharing-service.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -427,6 +427,9 @@
 block discarded – undo
427 427
 	public $service	= '';
428 428
 	public $total 		= 0;
429 429
 
430
+	/**
431
+	 * @param integer $total
432
+	 */
430 433
 	public function __construct( $id, $total ) {
431 434
 		$services 		= new Sharing_Service();
432 435
 		$this->id 		= esc_html( $id );
Please login to merge, or discard this patch.
modules/shortcodes/polldaddy.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
 		add_action( 'infinite_scroll_render', array( $this, 'polldaddy_shortcode_infinite' ), 11 );
23 23
 	}
24 24
 
25
+	/**
26
+	 * @param string $survey_link
27
+	 */
25 28
 	private function get_async_code( array $settings, $survey_link ) {
26 29
 		$embed_src     = 'http://i0.poll.fm/survey.js';
27 30
 		$embed_src_ssl = 'https://polldaddy.com/survey.js';
Please login to merge, or discard this patch.