Changeset 2962511
- Timestamp:
- 09/04/2023 11:21:03 AM (3 years ago)
- Location:
- seo-links-interlinking
- Files:
-
- 46 added
- 4 edited
-
assets/1.7.3 (added)
-
assets/1.7.3/ajax.php (added)
-
assets/1.7.3/css (added)
-
assets/1.7.3/css/bootstrap.min.css (added)
-
assets/1.7.3/css/main.css (added)
-
assets/1.7.3/images (added)
-
assets/1.7.3/images/loader.gif (added)
-
assets/1.7.3/index.php (added)
-
assets/1.7.3/js (added)
-
assets/1.7.3/js/bootstrap.min.js (added)
-
assets/1.7.3/js/mozscript.js (added)
-
assets/1.7.3/js/seo_links.js (added)
-
assets/1.7.3/loader.php (added)
-
assets/1.7.3/main.css (added)
-
assets/1.7.3/readme.txt (added)
-
assets/1.7.3/scdata.php (added)
-
assets/1.7.3/utils.php (added)
-
assets/1.7.3/view (added)
-
assets/1.7.3/view/search_console.php (added)
-
assets/1.7.3/view/search_console_export.php (added)
-
assets/1.7.3/view/seo_links_settings.php (added)
-
assets/1.7.3/view/settings.php (added)
-
assets/1.7.3/wp_seo_plugins.php (added)
-
tags/1.7.3 (added)
-
tags/1.7.3/ajax.php (added)
-
tags/1.7.3/css (added)
-
tags/1.7.3/css/bootstrap.min.css (added)
-
tags/1.7.3/css/main.css (added)
-
tags/1.7.3/images (added)
-
tags/1.7.3/images/loader.gif (added)
-
tags/1.7.3/index.php (added)
-
tags/1.7.3/js (added)
-
tags/1.7.3/js/bootstrap.min.js (added)
-
tags/1.7.3/js/mozscript.js (added)
-
tags/1.7.3/js/seo_links.js (added)
-
tags/1.7.3/loader.php (added)
-
tags/1.7.3/main.css (added)
-
tags/1.7.3/readme.txt (added)
-
tags/1.7.3/scdata.php (added)
-
tags/1.7.3/utils.php (added)
-
tags/1.7.3/view (added)
-
tags/1.7.3/view/search_console.php (added)
-
tags/1.7.3/view/search_console_export.php (added)
-
tags/1.7.3/view/seo_links_settings.php (added)
-
tags/1.7.3/view/settings.php (added)
-
tags/1.7.3/wp_seo_plugins.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/scdata.php (modified) (2 diffs)
-
trunk/view/settings.php (modified) (3 diffs)
-
trunk/wp_seo_plugins.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seo-links-interlinking/trunk/readme.txt
r2864679 r2962511 4 4 Tags: seo, internal links, interlinking, internal linking, backlinks, automatic internal links, auto interlinking 5 5 Requires at least: 4.7 6 Tested up to: 6. 1.17 Stable tag: 1.7. 26 Tested up to: 6.2 7 Stable tag: 1.7.3 8 8 Requires PHP: 7.1 9 9 License: GPLv2 or later … … 28 28 29 29 == Upgrade Notice == 30 31 = 1.7.3 = 32 Removed last name field from registration 30 33 31 34 = 1.7.2 = -
seo-links-interlinking/trunk/scdata.php
r2864679 r2962511 6 6 * Author: WP SEO Plugins 7 7 * Author URI: https://wpseoplugins.org/ 8 * Version: 1.7. 28 * Version: 1.7.3 9 9 */ 10 10 header('Content-Type: text/html; charset=utf-8'); … … 34 34 define( 'SEOLI_SITE_URL', ( SEOLI_SERVER_PORT == 80 ? 'http://' : 'https://' ) . SEOLI_SERVER_NAME ); 35 35 define( 'SEOLI_SERVER_REQUEST_URI', $_SERVER['REQUEST_URI']); 36 define( 'SEOLI_VERSION', '1.7. 2' );36 define( 'SEOLI_VERSION', '1.7.3' ); 37 37 38 38 #function for add metabox. -
seo-links-interlinking/trunk/view/settings.php
r2819945 r2962511 13 13 <?php if(isset($_SESSION['wp_seo_plugins_status']) && (sanitize_text_field( $_SESSION['wp_seo_plugins_status'] ) == 0 || sanitize_text_field( $_SESSION['wp_seo_plugins_status'] == 1) ) ) : ?> 14 14 <div class="notice notice-success is-dismissible"> 15 <p><?php echo esc_html( $_SESSION['wp_seo_plugins_message'] ); ?></p>15 <p><?php echo $_SESSION['wp_seo_plugins_message']; ?></p> 16 16 </div> 17 17 <?php endif; ?> … … 184 184 <td><input name="name" type="text" id="name" class="regular-text"></td> 185 185 </tr> 186 <!-- 186 187 <tr> 187 188 <th scope="row"> … … 190 191 <td><input name="surname" type="text" id="surname" class="regular-text"></td> 191 192 </tr> 193 --> 192 194 <tr> 193 195 <th scope="row"> -
seo-links-interlinking/trunk/wp_seo_plugins.php
r2766586 r2962511 37 37 $args = array( 38 38 'body' => $post_data, 39 'timeout' => ' 5',39 'timeout' => '30', 40 40 'redirection' => '5', 41 41 'httpversion' => '1.0', … … 82 82 $args = array( 83 83 'body' => $post_data, 84 'timeout' => ' 5',84 'timeout' => '30', 85 85 'redirection' => '5', 86 86 'httpversion' => '1.0', … … 101 101 $args = array( 102 102 'body' => array('user_id' => $data->user_id ?? 0), 103 'timeout' => ' 5',103 'timeout' => '30', 104 104 'redirection' => '5', 105 105 'httpversion' => '1.0', … … 141 141 142 142 $args = array( 143 'timeout' => 10,143 'timeout' => 30, 144 144 'sslverify' => false 145 145 );
Note: See TracChangeset
for help on using the changeset viewer.