Changeset 2684138
- Timestamp:
- 02/24/2022 04:55:30 AM (4 years ago)
- Location:
- wp-theme-test
- Files:
-
- 6 edited
- 1 copied
-
tags/1.2.1 (copied) (copied from wp-theme-test/trunk)
-
tags/1.2.1/classes/class.core.php (modified) (1 diff)
-
tags/1.2.1/readme.txt (modified) (1 diff)
-
tags/1.2.1/wp-theme-test.php (modified) (1 diff)
-
trunk/classes/class.core.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-theme-test.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-theme-test/tags/1.2.1/classes/class.core.php
r2679505 r2684138 51 51 if (!empty($options['capabilities'])) { 52 52 global $current_user; 53 foreach ($options['capabilities'] as $key => $value) { 54 if (array_key_exists($value, $current_user->caps)) { 55 return true; 53 if (isset($current_user->caps) && is_array($current_user->caps)) { 54 foreach ($options['capabilities'] as $value) { 55 if (array_key_exists($value, $current_user->caps)) { 56 return true; 57 } 56 58 } 57 59 } -
wp-theme-test/tags/1.2.1/readme.txt
r2679507 r2684138 5 5 Requires at least: 3.0 or higher 6 6 Tested up to: 5.9.0 7 Stable tag: 1.2. 07 Stable tag: 1.2.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wp-theme-test/tags/1.2.1/wp-theme-test.php
r2679507 r2684138 5 5 Description: The theme can be changed and displayed to only logged in users. 6 6 Author: Nakashima Masahiro 7 Version: 1.2. 07 Version: 1.2.1 8 8 Author URI: http://www.kigurumi.asia 9 9 Text Domain: wptt -
wp-theme-test/trunk/classes/class.core.php
r2679505 r2684138 51 51 if (!empty($options['capabilities'])) { 52 52 global $current_user; 53 foreach ($options['capabilities'] as $key => $value) { 54 if (array_key_exists($value, $current_user->caps)) { 55 return true; 53 if (isset($current_user->caps) && is_array($current_user->caps)) { 54 foreach ($options['capabilities'] as $value) { 55 if (array_key_exists($value, $current_user->caps)) { 56 return true; 57 } 56 58 } 57 59 } -
wp-theme-test/trunk/readme.txt
r2679507 r2684138 5 5 Requires at least: 3.0 or higher 6 6 Tested up to: 5.9.0 7 Stable tag: 1.2. 07 Stable tag: 1.2.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wp-theme-test/trunk/wp-theme-test.php
r2679507 r2684138 5 5 Description: The theme can be changed and displayed to only logged in users. 6 6 Author: Nakashima Masahiro 7 Version: 1.2. 07 Version: 1.2.1 8 8 Author URI: http://www.kigurumi.asia 9 9 Text Domain: wptt
Note: See TracChangeset
for help on using the changeset viewer.