Changeset 3043640
- Timestamp:
- 03/01/2024 12:46:26 PM (2 years ago)
- Location:
- slash-admin
- Files:
-
- 6 edited
- 1 copied
-
tags/3.8.2 (copied) (copied from slash-admin/trunk)
-
tags/3.8.2/classes/Loader.class.php (modified) (1 diff)
-
tags/3.8.2/readme.txt (modified) (2 diffs)
-
tags/3.8.2/slashadmin.php (modified) (2 diffs)
-
trunk/classes/Loader.class.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/slashadmin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
slash-admin/tags/3.8.2/classes/Loader.class.php
r2408470 r3043640 76 76 $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};}"; 77 77 } 78 79 echo $styles ? '<style>' . $styles . '</style>' : ''; 78 echo $styles ? '<style>' . safecss_filter_attr( $styles ) . '</style>' : ''; 80 79 } 81 80 -
slash-admin/tags/3.8.2/readme.txt
r2989290 r3043640 6 6 Requires PHP: 7.0 7 7 Tested up to: 6.4 8 Stable tag: 3.8. 18 Stable tag: 3.8.2 9 9 License: GPLv2 or later 10 10 … … 161 161 162 162 == Changelog == 163 = 3.8.2 = 164 * Security update 165 163 166 = 3.8.1 = 164 167 * Fixes a fatal error with WordPress 6.1 -
slash-admin/tags/3.8.2/slashadmin.php
r2809705 r3043640 4 4 * Plugin URI: http://wordpress.org/plugins/slash-admin/ 5 5 * 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. 16 * Version: 3.8.2 7 7 * Author: Giorgos Sarigiannidis 8 8 * Author URI: http://www.gsarigiannidis.gr … … 17 17 } 18 18 19 define( 'SLASH_ADMIN_VERSION', '3.8. 1' );19 define( 'SLASH_ADMIN_VERSION', '3.8.2' ); 20 20 21 21 load_plugin_textdomain( 'slash-admin', false, basename( dirname( __FILE__ ) ) . '/languages' ); // Localize it -
slash-admin/trunk/classes/Loader.class.php
r2408470 r3043640 76 76 $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};}"; 77 77 } 78 79 echo $styles ? '<style>' . $styles . '</style>' : ''; 78 echo $styles ? '<style>' . safecss_filter_attr( $styles ) . '</style>' : ''; 80 79 } 81 80 -
slash-admin/trunk/readme.txt
r2989290 r3043640 6 6 Requires PHP: 7.0 7 7 Tested up to: 6.4 8 Stable tag: 3.8. 18 Stable tag: 3.8.2 9 9 License: GPLv2 or later 10 10 … … 161 161 162 162 == Changelog == 163 = 3.8.2 = 164 * Security update 165 163 166 = 3.8.1 = 164 167 * Fixes a fatal error with WordPress 6.1 -
slash-admin/trunk/slashadmin.php
r2809705 r3043640 4 4 * Plugin URI: http://wordpress.org/plugins/slash-admin/ 5 5 * 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. 16 * Version: 3.8.2 7 7 * Author: Giorgos Sarigiannidis 8 8 * Author URI: http://www.gsarigiannidis.gr … … 17 17 } 18 18 19 define( 'SLASH_ADMIN_VERSION', '3.8. 1' );19 define( 'SLASH_ADMIN_VERSION', '3.8.2' ); 20 20 21 21 load_plugin_textdomain( 'slash-admin', false, basename( dirname( __FILE__ ) ) . '/languages' ); // Localize it
Note: See TracChangeset
for help on using the changeset viewer.