Skip to content

Commit

Permalink
Version 4.3.24
Browse files Browse the repository at this point in the history
  • Loading branch information
humanit-se authored and root committed Jun 11, 2020
1 parent cc94436 commit 5df7bee
Show file tree
Hide file tree
Showing 555 changed files with 42,556 additions and 20,089 deletions.
2 changes: 1 addition & 1 deletion readme.html
Expand Up @@ -10,7 +10,7 @@
<h1 id="logo">
<a href="https://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" /></a>
<br />
Version 4.2.8 (Svensk)
Version 4.3.4 (Svensk)
</h1>

<h1>N&aring;gra ord att b&ouml;rja med</h1>
Expand Down
666 changes: 344 additions & 322 deletions wp-admin/about.php

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions wp-admin/admin-ajax.php
Expand Up @@ -56,15 +56,18 @@
'hidden-columns', 'update-welcome-panel', 'menu-get-metabox', 'wp-link-ajax',
'menu-locations-save', 'menu-quick-search', 'meta-box-order', 'get-permalink',
'sample-permalink', 'inline-save', 'inline-save-tax', 'find_posts', 'widgets-order',
'save-widget', 'set-post-thumbnail', 'date_format', 'time_format', 'wp-fullscreen-save-post',
'save-widget', 'set-post-thumbnail', 'date_format', 'time_format',
'wp-remove-post-lock', 'dismiss-wp-pointer', 'upload-attachment', 'get-attachment',
'query-attachments', 'save-attachment', 'save-attachment-compat', 'send-link-to-editor',
'send-attachment-to-editor', 'save-attachment-order', 'heartbeat', 'get-revision-diffs',
'save-user-color-scheme', 'update-widget', 'query-themes', 'parse-embed', 'set-attachment-thumbnail',
'parse-media-shortcode', 'destroy-sessions', 'install-plugin', 'update-plugin', 'press-this-save-post',
'press-this-add-category',
'press-this-add-category', 'crop-image',
);

// Deprecated
$core_actions_post[] = 'wp-fullscreen-save-post';

// Register core Ajax calls.
if ( ! empty( $_GET['action'] ) && in_array( $_GET['action'], $core_actions_get ) )
add_action( 'wp_ajax_' . $_GET['action'], 'wp_ajax_' . str_replace( '-', '_', $_GET['action'] ), 1 );
Expand Down
1 change: 1 addition & 0 deletions wp-admin/admin-footer.php
Expand Up @@ -81,6 +81,7 @@
*
* @since 2.8.0
*
* @global string $hook_suffix
* @param string $hook_suffix The current admin page.
*/
do_action( "admin_footer-" . $GLOBALS['hook_suffix'] );
Expand Down
16 changes: 14 additions & 2 deletions wp-admin/admin-header.php
Expand Up @@ -10,7 +10,19 @@
if ( ! defined( 'WP_ADMIN' ) )
require_once( dirname( __FILE__ ) . '/admin.php' );

// In case admin-header.php is included in a function.
/**
* In case admin-header.php is included in a function.
*
* @global string $title
* @global string $hook_suffix
* @global WP_Screen $current_screen
* @global WP_Locale $wp_locale
* @global string $pagenow
* @global string $wp_version
* @global string $update_title
* @global int $total_update_count
* @global string $parent_file
*/
global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, $wp_version,
$update_title, $total_update_count, $parent_file;

Expand All @@ -24,7 +36,7 @@
if ( is_network_admin() )
$admin_title = sprintf( __( 'Network Admin: %s' ), esc_html( get_current_site()->site_name ) );
elseif ( is_user_admin() )
$admin_title = sprintf( __( 'Global Dashboard: %s' ), esc_html( get_current_site()->site_name ) );
$admin_title = sprintf( __( 'User Dashboard: %s' ), esc_html( get_current_site()->site_name ) );
else
$admin_title = get_bloginfo( 'name' );

Expand Down
20 changes: 15 additions & 5 deletions wp-admin/admin.php
Expand Up @@ -94,11 +94,21 @@

wp_enqueue_script( 'common' );

// $pagenow is set in vars.php
// $wp_importers is sometimes set in wp-admin/includes/import.php
//
// The remaining variables are imported as globals elsewhere,
// declared as globals here



/**
* $pagenow is set in vars.php
* $wp_importers is sometimes set in wp-admin/includes/import.php
* The remaining variables are imported as globals elsewhere, declared as globals here
*
* @global string $pagenow
* @global array $wp_importers
* @global string $hook_suffix
* @global string $plugin_page
* @global string $typenow
* @global string $taxnow
*/
global $pagenow, $wp_importers, $hook_suffix, $plugin_page, $typenow, $taxnow;

$page_hook = null;
Expand Down
13 changes: 8 additions & 5 deletions wp-admin/comment.php
Expand Up @@ -12,6 +12,9 @@
$parent_file = 'edit-comments.php';
$submenu_file = 'edit-comments.php';

/**
* @global string $action
*/
global $action;
wp_reset_vars( array('action') );

Expand Down Expand Up @@ -66,7 +69,7 @@ function comment_footer_die( $msg ) {
$comment_id = absint( $_GET['c'] );

if ( !$comment = get_comment( $comment_id ) )
comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">' . __('Go back') . '</a>.', 'javascript:history.go(-1)') );
comment_footer_die( __( 'Invalid comment ID.' ) . sprintf(' <a href="%s">' . __('Go back') . '</a>.', 'javascript:history.go(-1)') );

if ( !current_user_can( 'edit_comment', $comment_id ) )
comment_footer_die( __('You are not allowed to edit this comment.') );
Expand Down Expand Up @@ -114,13 +117,13 @@ function comment_footer_die( $msg ) {
?>
<div class="wrap">

<h2><?php echo esc_html( $title ); ?></h2>
<h1><?php echo esc_html( $title ); ?></h1>

<?php
switch ( $action ) {
case 'spam' :
$caution_msg = __('You are about to mark the following comment as spam:');
$button = __('Mark as Spam');
$button = _x( 'Mark as Spam', 'comment' );
break;
case 'trash' :
$caution_msg = __('You are about to move the following comment to the Trash:');
Expand Down Expand Up @@ -174,7 +177,7 @@ function comment_footer_die( $msg ) {
</tr>
<?php } ?>
<tr>
<th scope="row"><?php _e( 'In Response To' ); ?></th>
<th scope="row"><?php /* translators: column name or table row header */ _e( 'In Response To' ); ?></th>
<td>
<?php
$post_id = $comment->comment_post_ID;
Expand Down Expand Up @@ -249,7 +252,7 @@ function comment_footer_die( $msg ) {
$noredir = isset($_REQUEST['noredir']);

if ( !$comment = get_comment($comment_id) )
comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">' . __('Go back') . '</a>.', 'edit-comments.php') );
comment_footer_die( __( 'Invalid comment ID.' ) . sprintf(' <a href="%s">' . __('Go back') . '</a>.', 'edit-comments.php') );
if ( !current_user_can( 'edit_comment', $comment->comment_ID ) )
comment_footer_die( __('You are not allowed to edit comments on this post.') );

Expand Down
25 changes: 12 additions & 13 deletions wp-admin/credits.php
Expand Up @@ -18,7 +18,7 @@
*
* @since 3.2.0
*
* @return array|bool A list of all of the contributors, or false on error.
* @return array|false A list of all of the contributors, or false on error.
*/
function wp_credits() {
global $wp_version;
Expand Down Expand Up @@ -55,7 +55,6 @@ function wp_credits() {
* @param string &$display_name The contributor's display name, passed by reference.
* @param string $username The contributor's username.
* @param string $profiles URL to the contributor's WordPress.org profile page.
* @return string A contributor's display name, hyperlinked to a WordPress.org profile page.
*/
function _wp_credits_add_profile_link( &$display_name, $username, $profiles ) {
$display_name = '<a href="' . esc_url( sprintf( $profiles, $username ) ) . '">' . esc_html( $display_name ) . '</a>';
Expand All @@ -68,10 +67,9 @@ function _wp_credits_add_profile_link( &$display_name, $username, $profiles ) {
* @since 3.2.0
*
* @param string &$data External library data, passed by reference.
* @return string Link to the external library.
*/
function _wp_credits_build_object_link( &$data ) {
$data = '<a href="' . esc_url( $data[1] ) . '">' . $data[0] . '</a>';
$data = '<a href="' . esc_url( $data[1] ) . '">' . esc_html( $data[0] ) . '</a>';
}

list( $display_version ) = explode( '-', $wp_version );
Expand All @@ -82,7 +80,7 @@ function _wp_credits_build_object_link( &$data ) {

<h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1>

<div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s helps you communicate and share, globally.' ), $display_version ); ?></div>
<div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s makes it even easier to format your content and customize your site.' ), $display_version ); ?></div>

<div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>

Expand Down Expand Up @@ -111,8 +109,6 @@ function _wp_credits_build_object_link( &$data ) {

echo '<p class="about-description">' . __( 'WordPress is created by a worldwide team of passionate individuals.' ) . "</p>\n";

$gravatar = is_ssl() ? 'https://secure.gravatar.com/avatar/' : 'http://0.gravatar.com/avatar/';

foreach ( $credits['groups'] as $group_slug => $group_data ) {
if ( $group_data['name'] ) {
if ( 'Translators' == $group_data['name'] ) {
Expand All @@ -124,7 +120,7 @@ function _wp_credits_build_object_link( &$data ) {
$title = translate( $group_data['name'] );
}

echo '<h4 class="wp-people-group">' . $title . "</h4>\n";
echo '<h4 class="wp-people-group">' . esc_html( $title ) . "</h4>\n";
}

if ( ! empty( $group_data['shuffle'] ) )
Expand All @@ -144,11 +140,14 @@ function _wp_credits_build_object_link( &$data ) {
$classes = 'wp-people-group ' . ( $compact ? 'compact' : '' );
echo '<ul class="' . $classes . '" id="wp-people-group-' . $group_slug . '">' . "\n";
foreach ( $group_data['data'] as $person_data ) {
echo '<li class="wp-person" id="wp-person-' . $person_data[2] . '">' . "\n\t";
echo '<a href="' . sprintf( $credits['data']['profiles'], $person_data[2] ) . '">';
$size = 'compact' == $group_data['type'] ? '30' : '60';
echo '<img src="' . $gravatar . $person_data[1] . '?s=' . $size . '" srcset="' . $gravatar . $person_data[1] . '?s=' . $size * 2 . ' 2x" class="gravatar" alt="' . esc_attr( $person_data[0] ) . '" /></a>' . "\n\t";
echo '<a class="web" href="' . sprintf( $credits['data']['profiles'], $person_data[2] ) . '">' . $person_data[0] . "</a>\n\t";
echo '<li class="wp-person" id="wp-person-' . esc_attr( $person_data[2] ) . '">' . "\n\t";
echo '<a href="' . esc_url( sprintf( $credits['data']['profiles'], $person_data[2] ) ) . '">';
$size = 'compact' == $group_data['type'] ? 30 : 60;
$data = get_avatar_data( $person_data[1] . '@md5.gravatar.com', array( 'size' => $size ) );
$size *= 2;
$data2x = get_avatar_data( $person_data[1] . '@md5.gravatar.com', array( 'size' => $size ) );
echo '<img src="' . esc_url( $data['url'] ) . '" srcset="' . esc_url( $data2x['url'] ) . ' 2x" class="gravatar" alt="' . esc_attr( $person_data[0] ) . '" /></a>' . "\n\t";
echo '<a class="web" href="' . esc_url( sprintf( $credits['data']['profiles'], $person_data[2] ) ) . '">' . esc_html( $person_data[0] ) . "</a>\n\t";
if ( ! $compact )
echo '<span class="title">' . translate( $person_data[3] ) . "</span>\n";
echo "</li>\n";
Expand Down
76 changes: 43 additions & 33 deletions wp-admin/css/about-rtl.css
Expand Up @@ -23,7 +23,8 @@
}

.about-wrap div.updated,
.about-wrap div.error {
.about-wrap div.error,
.about-wrap .notice {
display: none !important;
}

Expand All @@ -41,6 +42,10 @@
vertical-align: middle;
}

.about-wrap .jetpack-video-wrapper {
margin-bottom: 0;
}

/* WordPress Version Badge */

.wp-badge {
Expand Down Expand Up @@ -96,6 +101,7 @@

.about-wrap h1 {
margin: 0.2em 0 0 200px;
padding: 0;
color: #32373c;
line-height: 1.2em;
font-size: 2.8em;
Expand All @@ -115,6 +121,7 @@
.about-wrap code,
.about-wrap ol li p {
font-size: 14px;
font-weight: normal;
}

.about-wrap .about-description,
Expand All @@ -133,21 +140,22 @@

/* 1.2 - Structure */

.about-wrap .two-col > div {
.about-wrap [class$=col] .col {
float: right;
position: relative;
width: 47.6%;
}
.about-wrap .two-col .col {
margin-left: 4.799999999%;
float: right;
width: 47.6%;
}

.about-wrap .three-col > div {
position: relative;
width: 29.95%;
.about-wrap .three-col .col {
margin-left: 4.999999999%;
float: right;
width: 29.95%;
}

.about-wrap [class$=col] .last-feature {
.about-wrap .two-col .col:nth-of-type(2n),
.about-wrap .three-col .col:nth-of-type(3n) {
margin-left: 0;
}

Expand Down Expand Up @@ -233,23 +241,30 @@
max-width: 95%;
}

.about-wrap .feature-section .col:nth-of-type(odd) {
float: right;
margin: 40px 0 0 5%;
width: 48%;
.about-wrap .feature-section .media-container {
border: 1px solid #ddd;
overflow: hidden;
}

.about-wrap .feature-section .svg-container {
padding: 50px 0;
text-align: center;
background-color: #e1e1e3;
}

.about-wrap .feature-section .col:nth-of-type(even) {
float: left;
margin: 40px 0 0;
width: 46%;
.about-wrap .feature-section .svg-container img {
max-width: 150px;
}

.about-wrap .feature-section:not(.under-the-hood) .col {
margin-top: 40px;
}

.about-wrap .changelog {
margin-bottom: 40px;
}

.about-wrap .changelog.feature-section > div {
.about-wrap .changelog.feature-section .col {
margin-top: 40px;
}

Expand Down Expand Up @@ -364,26 +379,20 @@
border-bottom: none;
}

.about-wrap .one-col > div,
.about-wrap .two-col > div,
.about-wrap .three-col > div,
.about-wrap .two-col .col:nth-of-type(n) {
.about-wrap [class$=col] .col {
float: none;
width: 100%;
margin: 40px 0 0;
padding: 0 0 40px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.about-wrap .two-col .col h3 {
margin-top: 0;
}

.about-wrap .three-col img {
display: block;
margin: 0 auto;
}

.about-wrap .feature-list div {
.about-wrap .feature-list .col {
margin: 0;
padding: 0;
border-bottom: none;
Expand Down Expand Up @@ -430,14 +439,15 @@
border-bottom: 1px solid #ccc;
}

.about-wrap .three-col div,
.about-wrap .headline-feature .feature-section div {
width: 100% !important;
float: none !important;
.about-wrap .feature-section .svg-container {
padding-top: 20px;
padding-bottom: 20px;
}

.about-wrap .dfw p {
max-width: 90%;
.about-wrap .three-col .col,
.about-wrap .headline-feature .feature-section .col {
width: 100% !important;
float: none !important;
}
}

Expand Down

0 comments on commit 5df7bee

Please sign in to comment.