Completed
Push — master ( 8ff7a8...c0c536 )
by Stephen
77:04 queued 40:03
created
tools/i18n/add-textdomain.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Console application, which adds textdomain argument
4
- * to all i18n function calls
5
- *
6
- * @package wordpress-i18n
7
- */
3
+	 * Console application, which adds textdomain argument
4
+	 * to all i18n function calls
5
+	 *
6
+	 * @package wordpress-i18n
7
+	 */
8 8
 error_reporting(E_ALL);
9 9
 
10 10
 require_once dirname( __FILE__ ) . '/makepot.php';
Please login to merge, or discard this patch.
src/wp-login.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * WordPress User Page
4
- *
5
- * Handles authentication, registering, resetting passwords, forgot password,
6
- * and other user handling.
7
- *
8
- * @package WordPress
9
- */
3
+	 * WordPress User Page
4
+	 *
5
+	 * Handles authentication, registering, resetting passwords, forgot password,
6
+	 * and other user handling.
7
+	 *
8
+	 * @package WordPress
9
+	 */
10 10
 
11 11
 /** Make sure that the WordPress bootstrap has run before continuing. */
12 12
 require( dirname(__FILE__) . '/wp-load.php' );
Please login to merge, or discard this patch.
src/wp-blog-header.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Loads the WordPress environment and template.
4
- *
5
- * @package WordPress
6
- */
3
+	 * Loads the WordPress environment and template.
4
+	 *
5
+	 * @package WordPress
6
+	 */
7 7
 
8 8
 if ( !isset($wp_did_header) ) {
9 9
 
Please login to merge, or discard this patch.
src/xmlrpc.php 1 patch
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.
src/wp-signup.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -723,10 +723,10 @@
 block discarded – undo
723 723
 </div>
724 724
 <?php
725 725
 /**
726
- * Fires after the sign-up forms, before wp_footer.
727
- *
728
- * @since 3.0.0
729
- */
726
+	 * Fires after the sign-up forms, before wp_footer.
727
+	 *
728
+	 * @since 3.0.0
729
+	 */
730 730
 do_action( 'after_signup_form' ); ?>
731 731
 
732 732
 <?php get_footer(); ?>
Please login to merge, or discard this patch.
src/wp-comments-post.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Handles Comment Post to WordPress and prevents duplicate comment posting.
4
- *
5
- * @package WordPress
6
- */
3
+	 * Handles Comment Post to WordPress and prevents duplicate comment posting.
4
+	 *
5
+	 * @package WordPress
6
+	 */
7 7
 
8 8
 if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) {
9 9
 	header('Allow: POST');
Please login to merge, or discard this patch.
src/wp-content/themes/twentytwelve/functions.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -1,26 +1,26 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Twenty Twelve functions and definitions
4
- *
5
- * Sets up the theme and provides some helper functions, which are used
6
- * in the theme as custom template tags. Others are attached to action and
7
- * filter hooks in WordPress to change core functionality.
8
- *
9
- * When using a child theme (see https://codex.wordpress.org/Theme_Development and
10
- * https://codex.wordpress.org/Child_Themes), you can override certain functions
11
- * (those wrapped in a function_exists() call) by defining them first in your child theme's
12
- * functions.php file. The child theme's functions.php file is included before the parent
13
- * theme's file, so the child theme functions would be used.
14
- *
15
- * Functions that are not pluggable (not wrapped in function_exists()) are instead attached
16
- * to a filter or action hook.
17
- *
18
- * For more information on hooks, actions, and filters, @link https://codex.wordpress.org/Plugin_API
19
- *
20
- * @package WordPress
21
- * @subpackage Twenty_Twelve
22
- * @since Twenty Twelve 1.0
23
- */
3
+			 * Twenty Twelve functions and definitions
4
+			 *
5
+			 * Sets up the theme and provides some helper functions, which are used
6
+			 * in the theme as custom template tags. Others are attached to action and
7
+			 * filter hooks in WordPress to change core functionality.
8
+			 *
9
+			 * When using a child theme (see https://codex.wordpress.org/Theme_Development and
10
+			 * https://codex.wordpress.org/Child_Themes), you can override certain functions
11
+			 * (those wrapped in a function_exists() call) by defining them first in your child theme's
12
+			 * functions.php file. The child theme's functions.php file is included before the parent
13
+			 * theme's file, so the child theme functions would be used.
14
+			 *
15
+			 * Functions that are not pluggable (not wrapped in function_exists()) are instead attached
16
+			 * to a filter or action hook.
17
+			 *
18
+			 * For more information on hooks, actions, and filters, @link https://codex.wordpress.org/Plugin_API
19
+			 *
20
+			 * @package WordPress
21
+			 * @subpackage Twenty_Twelve
22
+			 * @since Twenty Twelve 1.0
23
+			 */
24 24
 
25 25
 // Set up the content width value based on the theme's design and stylesheet.
26 26
 if ( ! isset( $content_width ) )
Please login to merge, or discard this patch.
src/wp-content/themes/twentytwelve/content-link.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The template for displaying posts in the Link post format
4
- *
5
- * @package WordPress
6
- * @subpackage Twenty_Twelve
7
- * @since Twenty Twelve 1.0
8
- */
3
+			 * The template for displaying posts in the Link post format
4
+			 *
5
+			 * @package WordPress
6
+			 * @subpackage Twenty_Twelve
7
+			 * @since Twenty Twelve 1.0
8
+			 */
9 9
 ?>
10 10
 
11 11
 	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
Please login to merge, or discard this patch.
src/wp-content/themes/twentytwelve/archive.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The template for displaying Archive pages
4
- *
5
- * Used to display archive-type pages if nothing more specific matches a query.
6
- * For example, puts together date-based pages if no date.php file exists.
7
- *
8
- * If you'd like to further customize these archive views, you may create a
9
- * new template file for each specific one. For example, Twenty Twelve already
10
- * has tag.php for Tag archives, category.php for Category archives, and
11
- * author.php for Author archives.
12
- *
13
- * @link https://codex.wordpress.org/Template_Hierarchy
14
- *
15
- * @package WordPress
16
- * @subpackage Twenty_Twelve
17
- * @since Twenty Twelve 1.0
18
- */
3
+		 * The template for displaying Archive pages
4
+		 *
5
+		 * Used to display archive-type pages if nothing more specific matches a query.
6
+		 * For example, puts together date-based pages if no date.php file exists.
7
+		 *
8
+		 * If you'd like to further customize these archive views, you may create a
9
+		 * new template file for each specific one. For example, Twenty Twelve already
10
+		 * has tag.php for Tag archives, category.php for Category archives, and
11
+		 * author.php for Author archives.
12
+		 *
13
+		 * @link https://codex.wordpress.org/Template_Hierarchy
14
+		 *
15
+		 * @package WordPress
16
+		 * @subpackage Twenty_Twelve
17
+		 * @since Twenty Twelve 1.0
18
+		 */
19 19
 
20 20
 get_header(); ?>
21 21
 
Please login to merge, or discard this patch.