@@ -8,9 +8,9 @@ |
||
8 | 8 | */ |
9 | 9 | // see: http://php.net/tokenizer |
10 | 10 | if ( ! defined( 'T_ML_COMMENT' ) ) |
11 | - define( 'T_ML_COMMENT', T_COMMENT ); |
|
11 | + define( 'T_ML_COMMENT', T_COMMENT ); |
|
12 | 12 | else |
13 | - define( 'T_DOC_COMMENT', T_ML_COMMENT ); |
|
13 | + define( 'T_DOC_COMMENT', T_ML_COMMENT ); |
|
14 | 14 | |
15 | 15 | $pomo = dirname( dirname( dirname( __FILE__ ) ) ) . '/src/wp-includes/pomo'; |
16 | 16 | require_once "$pomo/po.php"; |
@@ -1,12 +1,12 @@ |
||
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' ); |
@@ -43,15 +43,15 @@ |
||
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> |
@@ -723,10 +723,10 @@ |
||
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(); ?> |
@@ -1,9 +1,9 @@ |
||
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'); |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Used to set up and fix common variables and include |
|
4 | - * the WordPress procedural and class library. |
|
5 | - * |
|
6 | - * Allows for some configuration in wp-config.php (see default-constants.php) |
|
7 | - * |
|
8 | - * @internal This file must be parsable by PHP4. |
|
9 | - * |
|
10 | - * @package WordPress |
|
11 | - */ |
|
3 | + * Used to set up and fix common variables and include |
|
4 | + * the WordPress procedural and class library. |
|
5 | + * |
|
6 | + * Allows for some configuration in wp-config.php (see default-constants.php) |
|
7 | + * |
|
8 | + * @internal This file must be parsable by PHP4. |
|
9 | + * |
|
10 | + * @package WordPress |
|
11 | + */ |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Stores the location of the WordPress directory of functions, classes, and core content. |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * The template for displaying Author Archive pages |
|
4 | - * |
|
5 | - * Used to display archive-type pages for posts by an author. |
|
6 | - * |
|
7 | - * @link https://codex.wordpress.org/Template_Hierarchy |
|
8 | - * |
|
9 | - * @package WordPress |
|
10 | - * @subpackage Twenty_Twelve |
|
11 | - * @since Twenty Twelve 1.0 |
|
12 | - */ |
|
3 | + * The template for displaying Author Archive pages |
|
4 | + * |
|
5 | + * Used to display archive-type pages for posts by an author. |
|
6 | + * |
|
7 | + * @link https://codex.wordpress.org/Template_Hierarchy |
|
8 | + * |
|
9 | + * @package WordPress |
|
10 | + * @subpackage Twenty_Twelve |
|
11 | + * @since Twenty Twelve 1.0 |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | get_header(); ?> |
15 | 15 |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * The Template for displaying all single posts |
|
4 | - * |
|
5 | - * @package WordPress |
|
6 | - * @subpackage Twenty_Twelve |
|
7 | - * @since Twenty Twelve 1.0 |
|
8 | - */ |
|
3 | + * The Template for displaying all single posts |
|
4 | + * |
|
5 | + * @package WordPress |
|
6 | + * @subpackage Twenty_Twelve |
|
7 | + * @since Twenty Twelve 1.0 |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | get_header(); ?> |
11 | 11 |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * The sidebar containing the main widget area |
|
4 | - * |
|
5 | - * @package WordPress |
|
6 | - * @subpackage Twenty_Fifteen |
|
7 | - * @since Twenty Fifteen 1.0 |
|
8 | - */ |
|
3 | + * The sidebar containing the main widget area |
|
4 | + * |
|
5 | + * @package WordPress |
|
6 | + * @subpackage Twenty_Fifteen |
|
7 | + * @since Twenty Fifteen 1.0 |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | if ( has_nav_menu( 'primary' ) || has_nav_menu( 'social' ) || is_active_sidebar( 'sidebar-1' ) ) : ?> |
11 | 11 | <div id="secondary" class="secondary"> |