Plugin Directory

Changeset 3043640


Ignore:
Timestamp:
03/01/2024 12:46:26 PM (2 years ago)
Author:
gsarig
Message:

Update to version 3.8.2 from GitHub

Location:
slash-admin
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • slash-admin/tags/3.8.2/classes/Loader.class.php

    r2408470 r3043640  
    7676            $styles        .= "#slash_admin_loader-container {background: {$background};}.slash_admin_loader_delay-msg {color: {$full_spinner};}.slash_admin_loader {border-top-color: {$empty_spinner};border-right-color: {$empty_spinner};border-bottom-color: {$empty_spinner};border-left-color: {$full_spinner};}";
    7777        }
    78 
    79         echo $styles ? '<style>' . $styles . '</style>' : '';
     78            echo $styles ? '<style>' . safecss_filter_attr( $styles ) . '</style>' : '';
    8079    }
    8180
  • slash-admin/tags/3.8.2/readme.txt

    r2989290 r3043640  
    66Requires PHP: 7.0
    77Tested up to: 6.4
    8 Stable tag: 3.8.1
     8Stable tag: 3.8.2
    99License: GPLv2 or later
    1010
     
    161161
    162162== Changelog ==
     163= 3.8.2 =
     164* Security update
     165
    163166= 3.8.1 =
    164167* Fixes a fatal error with WordPress 6.1
  • slash-admin/tags/3.8.2/slashadmin.php

    r2809705 r3043640  
    44 * Plugin URI: http://wordpress.org/plugins/slash-admin/
    55 * Description: Slash Admin lets you change various different options in a WordPress website, keeps them active even if you switch your theme and helps you create a friendlier Admin Panel for you and your editors.
    6  * Version: 3.8.1
     6 * Version: 3.8.2
    77 * Author: Giorgos Sarigiannidis
    88 * Author URI: http://www.gsarigiannidis.gr
     
    1717}
    1818
    19 define( 'SLASH_ADMIN_VERSION', '3.8.1' );
     19define( 'SLASH_ADMIN_VERSION', '3.8.2' );
    2020
    2121load_plugin_textdomain( 'slash-admin', false, basename( dirname( __FILE__ ) ) . '/languages' ); // Localize it
  • slash-admin/trunk/classes/Loader.class.php

    r2408470 r3043640  
    7676            $styles        .= "#slash_admin_loader-container {background: {$background};}.slash_admin_loader_delay-msg {color: {$full_spinner};}.slash_admin_loader {border-top-color: {$empty_spinner};border-right-color: {$empty_spinner};border-bottom-color: {$empty_spinner};border-left-color: {$full_spinner};}";
    7777        }
    78 
    79         echo $styles ? '<style>' . $styles . '</style>' : '';
     78            echo $styles ? '<style>' . safecss_filter_attr( $styles ) . '</style>' : '';
    8079    }
    8180
  • slash-admin/trunk/readme.txt

    r2989290 r3043640  
    66Requires PHP: 7.0
    77Tested up to: 6.4
    8 Stable tag: 3.8.1
     8Stable tag: 3.8.2
    99License: GPLv2 or later
    1010
     
    161161
    162162== Changelog ==
     163= 3.8.2 =
     164* Security update
     165
    163166= 3.8.1 =
    164167* Fixes a fatal error with WordPress 6.1
  • slash-admin/trunk/slashadmin.php

    r2809705 r3043640  
    44 * Plugin URI: http://wordpress.org/plugins/slash-admin/
    55 * Description: Slash Admin lets you change various different options in a WordPress website, keeps them active even if you switch your theme and helps you create a friendlier Admin Panel for you and your editors.
    6  * Version: 3.8.1
     6 * Version: 3.8.2
    77 * Author: Giorgos Sarigiannidis
    88 * Author URI: http://www.gsarigiannidis.gr
     
    1717}
    1818
    19 define( 'SLASH_ADMIN_VERSION', '3.8.1' );
     19define( 'SLASH_ADMIN_VERSION', '3.8.2' );
    2020
    2121load_plugin_textdomain( 'slash-admin', false, basename( dirname( __FILE__ ) ) . '/languages' ); // Localize it
Note: See TracChangeset for help on using the changeset viewer.