Completed
Push — master ( cde0c6...d99bf9 )
by Stephen
15:46
created
tools/i18n/pot-ext-meta.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -49,6 +49,9 @@
 block discarded – undo
49 49
 		return $pot;
50 50
 	}
51 51
 
52
+	/**
53
+	 * @param string[] $headers
54
+	 */
52 55
 	function append( $ext_filename, $pot_filename, $headers = null ) {
53 56
 		if ( $headers )
54 57
 			$this->headers = (array) $headers;
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@  discard block
 block discarded – undo
7 7
  * @subpackage tools
8 8
  */
9 9
 
10
-$pomo = dirname( dirname( dirname( __FILE__ ) ) ) . '/src/wp-includes/pomo';
10
+$pomo = dirname(dirname(dirname(__FILE__))).'/src/wp-includes/pomo';
11 11
 require_once "$pomo/po.php";
12
-require_once dirname( __FILE__ ) . '/makepot.php';
12
+require_once dirname(__FILE__).'/makepot.php';
13 13
 
14 14
 class PotExtMeta {
15 15
 
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
 		$source = $makepot->get_first_lines($ext_filename);
37 37
 		$pot = '';
38 38
 		$po = new PO;
39
-		foreach($this->headers as $header) {
39
+		foreach ($this->headers as $header) {
40 40
 			$string = $makepot->get_addon_header($header, $source);
41
-			if (!$string) continue;
41
+			if ( ! $string) continue;
42 42
 			$args = array(
43 43
 				'singular' => $string,
44 44
 				'extracted_comments' => $header.' of the plugin/theme',
@@ -49,16 +49,16 @@  discard block
 block discarded – undo
49 49
 		return $pot;
50 50
 	}
51 51
 
52
-	function append( $ext_filename, $pot_filename, $headers = null ) {
53
-		if ( $headers )
52
+	function append($ext_filename, $pot_filename, $headers = null) {
53
+		if ($headers)
54 54
 			$this->headers = (array) $headers;
55
-		if ( is_dir( $ext_filename ) ) {
55
+		if (is_dir($ext_filename)) {
56 56
 			$pot = implode('', array_map(array($this, 'load_from_file'), glob("$ext_filename/*.php")));
57 57
 		} else {
58 58
 			$pot = $this->load_from_file($ext_filename);
59 59
 		}
60
-		$potf = '-' == $pot_filename? STDOUT : fopen($pot_filename, 'a');
61
-		if (!$potf) return false;
60
+		$potf = '-' == $pot_filename ? STDOUT : fopen($pot_filename, 'a');
61
+		if ( ! $potf) return false;
62 62
 		fwrite($potf, $pot);
63 63
 		if ('-' != $pot_filename) fclose($potf);
64 64
 		return true;
@@ -69,10 +69,10 @@  discard block
 block discarded – undo
69 69
 if ($included_files[0] == __FILE__) {
70 70
 	ini_set('display_errors', 1);
71 71
 	$potextmeta = new PotExtMeta;
72
-	if (!isset($argv[1])) {
72
+	if ( ! isset($argv[1])) {
73 73
 		$potextmeta->usage();
74 74
 	}
75
-	$potextmeta->append( $argv[1], isset( $argv[2] ) ? $argv[2] : '-', isset( $argv[3] ) ? $argv[3] : null );
75
+	$potextmeta->append($argv[1], isset($argv[2]) ? $argv[2] : '-', isset($argv[3]) ? $argv[3] : null);
76 76
 }
77 77
 
78 78
 ?>
Please login to merge, or discard this patch.
Braces   +12 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,7 +38,9 @@  discard block
 block discarded – undo
38 38
 		$po = new PO;
39 39
 		foreach($this->headers as $header) {
40 40
 			$string = $makepot->get_addon_header($header, $source);
41
-			if (!$string) continue;
41
+			if (!$string) {
42
+				continue;
43
+			}
42 44
 			$args = array(
43 45
 				'singular' => $string,
44 46
 				'extracted_comments' => $header.' of the plugin/theme',
@@ -50,17 +52,22 @@  discard block
 block discarded – undo
50 52
 	}
51 53
 
52 54
 	function append( $ext_filename, $pot_filename, $headers = null ) {
53
-		if ( $headers )
54
-			$this->headers = (array) $headers;
55
+		if ( $headers ) {
56
+					$this->headers = (array) $headers;
57
+		}
55 58
 		if ( is_dir( $ext_filename ) ) {
56 59
 			$pot = implode('', array_map(array($this, 'load_from_file'), glob("$ext_filename/*.php")));
57 60
 		} else {
58 61
 			$pot = $this->load_from_file($ext_filename);
59 62
 		}
60 63
 		$potf = '-' == $pot_filename? STDOUT : fopen($pot_filename, 'a');
61
-		if (!$potf) return false;
64
+		if (!$potf) {
65
+			return false;
66
+		}
62 67
 		fwrite($potf, $pot);
63
-		if ('-' != $pot_filename) fclose($potf);
68
+		if ('-' != $pot_filename) {
69
+			fclose($potf);
70
+		}
64 71
 		return true;
65 72
 	}
66 73
 }
Please login to merge, or discard this patch.
tools/i18n/t/data/not-gettexted-0.php 2 patches
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,11 @@
 block discarded – undo
2 2
 
3 3
 if (! isset($wp_did_header)):
4 4
 if ( !file_exists( dirname(__FILE__) . '/wp-config.php') ) {
5
-	if (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false) $path = '';
6
-	else $path = 'wp-admin/';
5
+	if (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false) {
6
+		$path = '';
7
+	} else {
8
+		$path = 'wp-admin/';
9
+	}
7 10
 
8 11
 	require_once( dirname(__FILE__) . '/wp-includes/classes.php');
9 12
 	require_once( dirname(__FILE__) . '/wp-includes/functions.php');
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,23 +1,23 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (! isset($wp_did_header)):
4
-if ( !file_exists( dirname(__FILE__) . '/wp-config.php') ) {
3
+if ( ! isset($wp_did_header)):
4
+if ( ! file_exists(dirname(__FILE__).'/wp-config.php')) {
5 5
 	if (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false) $path = '';
6 6
 	else $path = 'wp-admin/';
7 7
 
8
-	require_once( dirname(__FILE__) . '/wp-includes/classes.php');
9
-	require_once( dirname(__FILE__) . '/wp-includes/functions.php');
10
-	require_once( dirname(__FILE__) . '/wp-includes/plugin.php');
11
-	wp_die( sprintf(/*WP_I18N_CONFIG*/" There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='https://codex.wordpress.org/Editing_wp-config.php'>We got it</a>. You can create a <code>wp-config.php</code> file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file.</p><p><a href='%s' class='button'>Create a Configuration File</a>" /*/WP_I18N_CONFIG*/, $path.'setup-config.php'), /*WP_I18N_ERROR*/ "WordPress &rsaquo; Error" /*/WP_I18N_ERROR*/);
8
+	require_once(dirname(__FILE__).'/wp-includes/classes.php');
9
+	require_once(dirname(__FILE__).'/wp-includes/functions.php');
10
+	require_once(dirname(__FILE__).'/wp-includes/plugin.php');
11
+	wp_die(sprintf(/*WP_I18N_CONFIG*/" There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='https://codex.wordpress.org/Editing_wp-config.php'>We got it</a>. You can create a <code>wp-config.php</code> file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file.</p><p><a href='%s' class='button'>Create a Configuration File</a>" /*/WP_I18N_CONFIG*/, $path.'setup-config.php'), /*WP_I18N_ERROR*/ "WordPress &rsaquo; Error" /*/WP_I18N_ERROR*/);
12 12
 }
13 13
 
14 14
 $wp_did_header = true;
15 15
 
16
-require_once( dirname(__FILE__) . '/wp-config.php');
16
+require_once(dirname(__FILE__).'/wp-config.php');
17 17
 
18 18
 wp();
19 19
 
20
-require_once(ABSPATH . WPINC . '/template-loader.php');
20
+require_once(ABSPATH.WPINC.'/template-loader.php');
21 21
 
22 22
 endif;
23 23
 
Please login to merge, or discard this patch.
tools/i18n/t/NotGettextedTest.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@  discard block
 block discarded – undo
5 5
  * @package wordpress-i18n
6 6
  * @subpackage tools
7 7
  */
8
-error_reporting( E_ALL );
9
-require_once dirname( dirname( __FILE__ ) ) . '/not-gettexted.php';
8
+error_reporting(E_ALL);
9
+require_once dirname(dirname(__FILE__)).'/not-gettexted.php';
10 10
 
11 11
 class NotGettextedTest extends PHPUnit_Framework_TestCase {
12 12
 
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
 
17 17
 	function test_make_string_aggregator() {
18 18
 		global $baba;
19
-		$f = $this->ng->make_string_aggregator( 'baba', 'baba.php' );
20
-		call_user_func( $f, 'x', 'y', 'z' );
21
-		call_user_func( $f, 'a', 'b', 'c' );
22
-		$this->assertEquals( array( array( 'x', 'y', 'baba.php', 'z'), array( 'a', 'b', 'baba.php', 'c' ) ), $baba );
19
+		$f = $this->ng->make_string_aggregator('baba', 'baba.php');
20
+		call_user_func($f, 'x', 'y', 'z');
21
+		call_user_func($f, 'a', 'b', 'c');
22
+		$this->assertEquals(array(array('x', 'y', 'baba.php', 'z'), array('a', 'b', 'baba.php', 'c')), $baba);
23 23
 	}
24 24
 
25 25
 	function test_walk() {
@@ -30,17 +30,17 @@  discard block
 block discarded – undo
30 30
 	if ($x == "18181") { wp_die(sprintf(/*WP_I18N_DIE*/\'We died %d times!\'/*WP_I18N_DIE*/)); }
31 31
 ?>';
32 32
 		$tokens = token_get_all($code);
33
-		$this->assertEquals( '', $this->ng->walk_tokens( $tokens, array($this->ng, 'ignore_token'), array($this->ng, 'ignore_token') ) );
34
-		$this->assertEquals( '"yes"\'We died %d times!\'', $this->ng->walk_tokens( $tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'ignore_token') ) );
35
-		$this->assertEquals( $code, $this->ng->walk_tokens( $tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'unchanged_token') ) );
36
-		$this->assertEquals( $code, $this->ng->walk_tokens( $tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'unchanged_token') ) );
33
+		$this->assertEquals('', $this->ng->walk_tokens($tokens, array($this->ng, 'ignore_token'), array($this->ng, 'ignore_token')));
34
+		$this->assertEquals('"yes"\'We died %d times!\'', $this->ng->walk_tokens($tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'ignore_token')));
35
+		$this->assertEquals($code, $this->ng->walk_tokens($tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'unchanged_token')));
36
+		$this->assertEquals($code, $this->ng->walk_tokens($tokens, array($this->ng, 'unchanged_token'), array($this->ng, 'unchanged_token')));
37 37
 	}
38 38
 
39 39
 	function test_replace() {
40 40
 		# copy to a new file, so that we don't corrupt the old one
41
-		copy( 'data/not-gettexted-0.php', 'data/not-gettexted-0-work.php' );
42
-		$this->ng->command_replace( 'data/not-gettexted-0.mo', 'data/not-gettexted-0-work.php' );
43
-		$this->assertEquals( file_get_contents( 'data/not-gettexted-0-result.php' ), file_get_contents( 'data/not-gettexted-0-work.php' ) );
44
-		unlink( 'data/not-gettexted-0-work.php' );
41
+		copy('data/not-gettexted-0.php', 'data/not-gettexted-0-work.php');
42
+		$this->ng->command_replace('data/not-gettexted-0.mo', 'data/not-gettexted-0-work.php');
43
+		$this->assertEquals(file_get_contents('data/not-gettexted-0-result.php'), file_get_contents('data/not-gettexted-0-work.php'));
44
+		unlink('data/not-gettexted-0-work.php');
45 45
 	}
46 46
 }
Please login to merge, or discard this patch.
src/wp-blog-header.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,14 +5,14 @@
 block discarded – undo
5 5
  * @package WordPress
6 6
  */
7 7
 
8
-if ( !isset($wp_did_header) ) {
8
+if ( ! isset($wp_did_header)) {
9 9
 
10 10
 	$wp_did_header = true;
11 11
 
12
-	require_once( dirname(__FILE__) . '/wp-load.php' );
12
+	require_once(dirname(__FILE__).'/wp-load.php');
13 13
 
14 14
 	wp();
15 15
 
16
-	require_once( ABSPATH . WPINC . '/template-loader.php' );
16
+	require_once(ABSPATH.WPINC.'/template-loader.php');
17 17
 
18 18
 }
Please login to merge, or discard this patch.
src/xmlrpc.php 3 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -43,15 +43,15 @@
 block discarded – undo
43 43
       <api name="MetaWeblog" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" />
44 44
       <api name="Blogger" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" />
45 45
       <?php
46
-      /**
47
-       * Add additional APIs to the Really Simple Discovery (RSD) endpoint.
48
-       *
49
-       * @link http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html
46
+	  /**
47
+	   * Add additional APIs to the Really Simple Discovery (RSD) endpoint.
50 48
 	   *
51
-       * @since 3.5.0
52
-       */
53
-      do_action( 'xmlrpc_rsd_apis' );
54
-      ?>
49
+	   * @link http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html
50
+	   *
51
+	   * @since 3.5.0
52
+	   */
53
+	  do_action( 'xmlrpc_rsd_apis' );
54
+	  ?>
55 55
     </apis>
56 56
   </service>
57 57
 </rsd>
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,8 +22,9 @@  discard block
 block discarded – undo
22 22
 }
23 23
 
24 24
 // fix for mozBlog and other cases where '<?xml' isn't on the very first line
25
-if ( isset($HTTP_RAW_POST_DATA) )
25
+if ( isset($HTTP_RAW_POST_DATA) ) {
26 26
 	$HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA);
27
+}
27 28
 
28 29
 /** Include the bootstrap for setting up WordPress environment */
29 30
 include( dirname( __FILE__ ) . '/wp-load.php' );
@@ -96,6 +97,7 @@  discard block
 block discarded – undo
96 97
  */
97 98
 function logIO( $io, $msg ) {
98 99
 	_deprecated_function( __FUNCTION__, '3.4', 'error_log()' );
99
-	if ( ! empty( $GLOBALS['xmlrpc_logging'] ) )
100
-		error_log( $io . ' - ' . $msg );
101
-}
102 100
\ No newline at end of file
101
+	if ( ! empty( $GLOBALS['xmlrpc_logging'] ) ) {
102
+			error_log( $io . ' - ' . $msg );
103
+	}
104
+	}
103 105
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -17,19 +17,19 @@  discard block
 block discarded – undo
17 17
 
18 18
 // A bug in PHP < 5.2.2 makes $HTTP_RAW_POST_DATA not set by default,
19 19
 // but we can do it ourself.
20
-if ( !isset( $HTTP_RAW_POST_DATA ) ) {
21
-	$HTTP_RAW_POST_DATA = file_get_contents( 'php://input' );
20
+if ( ! isset($HTTP_RAW_POST_DATA)) {
21
+	$HTTP_RAW_POST_DATA = file_get_contents('php://input');
22 22
 }
23 23
 
24 24
 // fix for mozBlog and other cases where '<?xml' isn't on the very first line
25
-if ( isset($HTTP_RAW_POST_DATA) )
25
+if (isset($HTTP_RAW_POST_DATA))
26 26
 	$HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA);
27 27
 
28 28
 /** Include the bootstrap for setting up WordPress environment */
29
-include( dirname( __FILE__ ) . '/wp-load.php' );
29
+include(dirname(__FILE__).'/wp-load.php');
30 30
 
31
-if ( isset( $_GET['rsd'] ) ) { // http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html
32
-header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
31
+if (isset($_GET['rsd'])) { // http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html
32
+header('Content-Type: text/xml; charset='.get_option('blog_charset'), true);
33 33
 ?>
34 34
 <?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
35 35
 <rsd version="1.0" xmlns="http://archipelago.phrasewise.com/rsd">
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	   *
51 51
        * @since 3.5.0
52 52
        */
53
-      do_action( 'xmlrpc_rsd_apis' );
53
+      do_action('xmlrpc_rsd_apis');
54 54
       ?>
55 55
     </apis>
56 56
   </service>
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
 exit;
60 60
 }
61 61
 
62
-include_once(ABSPATH . 'wp-admin/includes/admin.php');
63
-include_once(ABSPATH . WPINC . '/class-IXR.php');
64
-include_once(ABSPATH . WPINC . '/class-wp-xmlrpc-server.php'); 
62
+include_once(ABSPATH.'wp-admin/includes/admin.php');
63
+include_once(ABSPATH.WPINC.'/class-IXR.php');
64
+include_once(ABSPATH.WPINC.'/class-wp-xmlrpc-server.php'); 
65 65
 
66 66
 /**
67 67
  * Posts submitted via the XML-RPC interface get that title
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
  *
78 78
  * @param string $class The name of the XML-RPC server class.
79 79
  */
80
-$wp_xmlrpc_server_class = apply_filters( 'wp_xmlrpc_server_class', 'wp_xmlrpc_server' );
80
+$wp_xmlrpc_server_class = apply_filters('wp_xmlrpc_server_class', 'wp_xmlrpc_server');
81 81
 $wp_xmlrpc_server = new $wp_xmlrpc_server_class;
82 82
 
83 83
 // Fire off the request
@@ -94,8 +94,8 @@  discard block
 block discarded – undo
94 94
  * @param string $io Whether input or output
95 95
  * @param string $msg Information describing logging reason.
96 96
  */
97
-function logIO( $io, $msg ) {
98
-	_deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' );
99
-	if ( ! empty( $GLOBALS['xmlrpc_logging'] ) )
100
-		error_log( $io . ' - ' . $msg );
97
+function logIO($io, $msg) {
98
+	_deprecated_function(__FUNCTION__, '3.4.0', 'error_log()');
99
+	if ( ! empty($GLOBALS['xmlrpc_logging']))
100
+		error_log($io.' - '.$msg);
101 101
 }
102 102
\ No newline at end of file
Please login to merge, or discard this patch.
src/wp-cron.php 2 patches
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 ignore_user_abort(true);
13 13
 
14
-if ( !empty($_POST) || defined('DOING_AJAX') || defined('DOING_CRON') )
14
+if ( ! empty($_POST) || defined('DOING_AJAX') || defined('DOING_CRON'))
15 15
 	die();
16 16
 
17 17
 /**
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
  */
22 22
 define('DOING_CRON', true);
23 23
 
24
-if ( !defined('ABSPATH') ) {
24
+if ( ! defined('ABSPATH')) {
25 25
 	/** Set up WordPress environment */
26
-	require_once( dirname( __FILE__ ) . '/wp-load.php' );
26
+	require_once(dirname(__FILE__).'/wp-load.php');
27 27
 }
28 28
 
29 29
 /**
@@ -40,44 +40,44 @@  discard block
 block discarded – undo
40 40
 	global $wpdb;
41 41
 
42 42
 	$value = 0;
43
-	if ( wp_using_ext_object_cache() ) {
43
+	if (wp_using_ext_object_cache()) {
44 44
 		/*
45 45
 		 * Skip local cache and force re-fetch of doing_cron transient
46 46
 		 * in case another process updated the cache.
47 47
 		 */
48
-		$value = wp_cache_get( 'doing_cron', 'transient', true );
48
+		$value = wp_cache_get('doing_cron', 'transient', true);
49 49
 	} else {
50
-		$row = $wpdb->get_row( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", '_transient_doing_cron' ) );
51
-		if ( is_object( $row ) )
50
+		$row = $wpdb->get_row($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", '_transient_doing_cron'));
51
+		if (is_object($row))
52 52
 			$value = $row->option_value;
53 53
 	}
54 54
 
55 55
 	return $value;
56 56
 }
57 57
 
58
-if ( false === $crons = _get_cron_array() )
58
+if (false === $crons = _get_cron_array())
59 59
 	die();
60 60
 
61
-$keys = array_keys( $crons );
62
-$gmt_time = microtime( true );
61
+$keys = array_keys($crons);
62
+$gmt_time = microtime(true);
63 63
 
64
-if ( isset($keys[0]) && $keys[0] > $gmt_time )
64
+if (isset($keys[0]) && $keys[0] > $gmt_time)
65 65
 	die();
66 66
 
67 67
 
68 68
 // The cron lock: a unix timestamp from when the cron was spawned.
69
-$doing_cron_transient = get_transient( 'doing_cron' );
69
+$doing_cron_transient = get_transient('doing_cron');
70 70
 
71 71
 // Use global $doing_wp_cron lock otherwise use the GET lock. If no lock, trying grabbing a new lock.
72
-if ( empty( $doing_wp_cron ) ) {
73
-	if ( empty( $_GET[ 'doing_wp_cron' ] ) ) {
72
+if (empty($doing_wp_cron)) {
73
+	if (empty($_GET['doing_wp_cron'])) {
74 74
 		// Called from external script/job. Try setting a lock.
75
-		if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time ) )
75
+		if ($doing_cron_transient && ($doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time))
76 76
 			return;
77
-		$doing_cron_transient = $doing_wp_cron = sprintf( '%.22F', microtime( true ) );
78
-		set_transient( 'doing_cron', $doing_wp_cron );
77
+		$doing_cron_transient = $doing_wp_cron = sprintf('%.22F', microtime(true));
78
+		set_transient('doing_cron', $doing_wp_cron);
79 79
 	} else {
80
-		$doing_wp_cron = $_GET[ 'doing_wp_cron' ];
80
+		$doing_wp_cron = $_GET['doing_wp_cron'];
81 81
 	}
82 82
 }
83 83
 
@@ -85,25 +85,25 @@  discard block
 block discarded – undo
85 85
  * The cron lock (a unix timestamp set when the cron was spawned),
86 86
  * must match $doing_wp_cron (the "key").
87 87
  */
88
-if ( $doing_cron_transient != $doing_wp_cron )
88
+if ($doing_cron_transient != $doing_wp_cron)
89 89
 	return;
90 90
 
91
-foreach ( $crons as $timestamp => $cronhooks ) {
92
-	if ( $timestamp > $gmt_time )
91
+foreach ($crons as $timestamp => $cronhooks) {
92
+	if ($timestamp > $gmt_time)
93 93
 		break;
94 94
 
95
-	foreach ( $cronhooks as $hook => $keys ) {
95
+	foreach ($cronhooks as $hook => $keys) {
96 96
 
97
-		foreach ( $keys as $k => $v ) {
97
+		foreach ($keys as $k => $v) {
98 98
 
99 99
 			$schedule = $v['schedule'];
100 100
 
101
-			if ( $schedule != false ) {
101
+			if ($schedule != false) {
102 102
 				$new_args = array($timestamp, $schedule, $hook, $v['args']);
103 103
 				call_user_func_array('wp_reschedule_event', $new_args);
104 104
 			}
105 105
 
106
-			wp_unschedule_event( $timestamp, $hook, $v['args'] );
106
+			wp_unschedule_event($timestamp, $hook, $v['args']);
107 107
 
108 108
 			/**
109 109
 			 * Fires scheduled events.
@@ -114,16 +114,16 @@  discard block
 block discarded – undo
114 114
 			 * @param string $hook Name of the hook that was scheduled to be fired.
115 115
 			 * @param array  $args The arguments to be passed to the hook.
116 116
 			 */
117
- 			do_action_ref_array( $hook, $v['args'] );
117
+ 			do_action_ref_array($hook, $v['args']);
118 118
 
119 119
 			// If the hook ran too long and another cron process stole the lock, quit.
120
-			if ( _get_cron_lock() != $doing_wp_cron )
120
+			if (_get_cron_lock() != $doing_wp_cron)
121 121
 				return;
122 122
 		}
123 123
 	}
124 124
 }
125 125
 
126
-if ( _get_cron_lock() == $doing_wp_cron )
127
-	delete_transient( 'doing_cron' );
126
+if (_get_cron_lock() == $doing_wp_cron)
127
+	delete_transient('doing_cron');
128 128
 
129 129
 die();
Please login to merge, or discard this patch.
Braces   +22 added lines, -13 removed lines patch added patch discarded remove patch
@@ -11,8 +11,9 @@  discard block
 block discarded – undo
11 11
 
12 12
 ignore_user_abort(true);
13 13
 
14
-if ( !empty($_POST) || defined('DOING_AJAX') || defined('DOING_CRON') )
14
+if ( !empty($_POST) || defined('DOING_AJAX') || defined('DOING_CRON') ) {
15 15
 	die();
16
+}
16 17
 
17 18
 /**
18 19
  * Tell WordPress we are doing the CRON task.
@@ -48,21 +49,24 @@  discard block
 block discarded – undo
48 49
 		$value = wp_cache_get( 'doing_cron', 'transient', true );
49 50
 	} else {
50 51
 		$row = $wpdb->get_row( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", '_transient_doing_cron' ) );
51
-		if ( is_object( $row ) )
52
-			$value = $row->option_value;
52
+		if ( is_object( $row ) ) {
53
+					$value = $row->option_value;
54
+		}
53 55
 	}
54 56
 
55 57
 	return $value;
56 58
 }
57 59
 
58
-if ( false === $crons = _get_cron_array() )
60
+if ( false === $crons = _get_cron_array() ) {
59 61
 	die();
62
+}
60 63
 
61 64
 $keys = array_keys( $crons );
62 65
 $gmt_time = microtime( true );
63 66
 
64
-if ( isset($keys[0]) && $keys[0] > $gmt_time )
67
+if ( isset($keys[0]) && $keys[0] > $gmt_time ) {
65 68
 	die();
69
+}
66 70
 
67 71
 
68 72
 // The cron lock: a unix timestamp from when the cron was spawned.
@@ -72,8 +76,9 @@  discard block
 block discarded – undo
72 76
 if ( empty( $doing_wp_cron ) ) {
73 77
 	if ( empty( $_GET[ 'doing_wp_cron' ] ) ) {
74 78
 		// Called from external script/job. Try setting a lock.
75
-		if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time ) )
76
-			return;
79
+		if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time ) ) {
80
+					return;
81
+		}
77 82
 		$doing_cron_transient = $doing_wp_cron = sprintf( '%.22F', microtime( true ) );
78 83
 		set_transient( 'doing_cron', $doing_wp_cron );
79 84
 	} else {
@@ -85,12 +90,14 @@  discard block
 block discarded – undo
85 90
  * The cron lock (a unix timestamp set when the cron was spawned),
86 91
  * must match $doing_wp_cron (the "key").
87 92
  */
88
-if ( $doing_cron_transient != $doing_wp_cron )
93
+if ( $doing_cron_transient != $doing_wp_cron ) {
89 94
 	return;
95
+}
90 96
 
91 97
 foreach ( $crons as $timestamp => $cronhooks ) {
92
-	if ( $timestamp > $gmt_time )
93
-		break;
98
+	if ( $timestamp > $gmt_time ) {
99
+			break;
100
+	}
94 101
 
95 102
 	foreach ( $cronhooks as $hook => $keys ) {
96 103
 
@@ -117,13 +124,15 @@  discard block
 block discarded – undo
117 124
  			do_action_ref_array( $hook, $v['args'] );
118 125
 
119 126
 			// If the hook ran too long and another cron process stole the lock, quit.
120
-			if ( _get_cron_lock() != $doing_wp_cron )
121
-				return;
127
+			if ( _get_cron_lock() != $doing_wp_cron ) {
128
+							return;
129
+			}
122 130
 		}
123 131
 	}
124 132
 }
125 133
 
126
-if ( _get_cron_lock() == $doing_wp_cron )
134
+if ( _get_cron_lock() == $doing_wp_cron ) {
127 135
 	delete_transient( 'doing_cron' );
136
+}
128 137
 
129 138
 die();
Please login to merge, or discard this patch.
src/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,4 +14,4 @@
 block discarded – undo
14 14
 define('WP_USE_THEMES', true);
15 15
 
16 16
 /** Loads the WordPress Environment and Template */
17
-require( dirname( __FILE__ ) . '/wp-blog-header.php' );
17
+require(dirname(__FILE__).'/wp-blog-header.php');
Please login to merge, or discard this patch.
src/wp-content/themes/twentytwelve/footer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 	</div><!-- #main .wrapper -->
13 13
 	<footer id="colophon" role="contentinfo">
14 14
 		<div class="site-info">
15
-			<?php do_action( 'twentytwelve_credits' ); ?>
16
-			<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a>
15
+			<?php do_action('twentytwelve_credits'); ?>
16
+			<a href="<?php echo esc_url(__('https://wordpress.org/', 'twentytwelve')); ?>" title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'twentytwelve'); ?>"><?php printf(__('Proudly powered by %s', 'twentytwelve'), 'WordPress'); ?></a>
17 17
 		</div><!-- .site-info -->
18 18
 	</footer><!-- #colophon -->
19 19
 </div><!-- #page -->
Please login to merge, or discard this patch.
src/wp-content/themes/twentytwelve/content-quote.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,16 +10,16 @@
 block discarded – undo
10 10
 
11 11
 	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
12 12
 		<div class="entry-content">
13
-			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
13
+			<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve')); ?>
14 14
 		</div><!-- .entry-content -->
15 15
 
16 16
 		<footer class="entry-meta">
17
-			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
18
-			<?php if ( comments_open() ) : ?>
17
+			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr(sprintf(__('Permalink to %s', 'twentytwelve'), the_title_attribute('echo=0'))); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
18
+			<?php if (comments_open()) : ?>
19 19
 			<div class="comments-link">
20
-				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
20
+				<?php comments_popup_link('<span class="leave-reply">'.__('Leave a reply', 'twentytwelve').'</span>', __('1 Reply', 'twentytwelve'), __('% Replies', 'twentytwelve')); ?>
21 21
 			</div><!-- .comments-link -->
22 22
 			<?php endif; // comments_open() ?>
23
-			<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
23
+			<?php edit_post_link(__('Edit', 'twentytwelve'), '<span class="edit-link">', '</span>'); ?>
24 24
 		</footer><!-- .entry-meta -->
25 25
 	</article><!-- #post -->
Please login to merge, or discard this patch.