Changeset 183161
- Timestamp:
- 01/12/2023 03:56:39 AM (3 years ago)
- Location:
- bingopress/1.3.1
- Files:
-
- 12 edited
- 1 copied
- . (copied) (copied from bingopress/1.3.0)
- changelog.txt (modified) (1 diff)
- config.json (modified) (1 diff)
- readme.txt (modified) (1 diff)
- src/View/Backend/about.php (modified) (1 diff)
- src/View/Template/backend/default.php (modified) (3 diffs)
- src/View/Template/frontend/blank.php (modified) (1 diff)
- style.css (modified) (1 diff)
- template-parts/content/content-archive.php (modified) (2 diffs)
- template-parts/content/content-single.php (modified) (1 diff)
- vendor/autoload.php (modified) (1 diff)
- vendor/composer/autoload_real.php (modified) (2 diffs)
- vendor/composer/autoload_static.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bingopress/1.3.1/changelog.txt
r183160 r183161 1 1 # 📟 Changelog 2 3 ## 1.3.1 (2023-01-12) 4 5 6 ### Bug Fixes 7 8 * **wp:** wrong usage of esc fucntion (f01560b) 2 9 3 10 ## 1.3.0 (2023-01-12) -
bingopress/1.3.1/config.json
r183160 r183161 1 {"default":{"bingopress_animation":{"elements":{"bingopress_active":"fadeIn","bingopress_inactive":"fadeOut","content":"fadeIn","logo":"bounceIn","tab":"heartBeat"},"enable":1},"bingopress_assets":{"backend":{"bingopress-fontawesome-css":{"src":"vendor/fontawesome/css/all.min.css","status":true,"type":"css"}},"frontend":{"bingopress-fontawesome-css":{"src":"vendor/fontawesome/css/all.min.css","status":true,"type":"css"}}},"bingopress_design":{"size":{"custom":"","type":"medium"}},"bingopress_hooks":[],"bingopress_social_media":[{"ID":"skype","icon":"fab fa-skype"},{"ID":"youtube","icon":"fab fa-youtube"},{"ID":"github","icon":"fab fa-github"}]},"description":"BingoPress Theme is simple WordPress theme built with TailwindCSS.","enableHooks":["action","filter","shortcode"],"name":"BingoPress","premium":false,"production":true,"url":{"contact":"https://artistudio.xyz/contact","wordpress":"https://wordpress.org/themes/bingopress"},"version":"1.3. 0"}1 {"default":{"bingopress_animation":{"elements":{"bingopress_active":"fadeIn","bingopress_inactive":"fadeOut","content":"fadeIn","logo":"bounceIn","tab":"heartBeat"},"enable":1},"bingopress_assets":{"backend":{"bingopress-fontawesome-css":{"src":"vendor/fontawesome/css/all.min.css","status":true,"type":"css"}},"frontend":{"bingopress-fontawesome-css":{"src":"vendor/fontawesome/css/all.min.css","status":true,"type":"css"}}},"bingopress_design":{"size":{"custom":"","type":"medium"}},"bingopress_hooks":[],"bingopress_social_media":[{"ID":"skype","icon":"fab fa-skype"},{"ID":"youtube","icon":"fab fa-youtube"},{"ID":"github","icon":"fab fa-github"}]},"description":"BingoPress Theme is simple WordPress theme built with TailwindCSS.","enableHooks":["action","filter","shortcode"],"name":"BingoPress","premium":false,"production":true,"url":{"contact":"https://artistudio.xyz/contact","wordpress":"https://wordpress.org/themes/bingopress"},"version":"1.3.1"} -
bingopress/1.3.1/readme.txt
r183160 r183161 5 5 Tested up to: 6.1.1 6 6 Requires PHP: 7.1 7 Stable tag: 1.3. 07 Stable tag: 1.3.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
bingopress/1.3.1/src/View/Backend/about.php
r183160 r183161 31 31 <?php $url = isset($config->url->wordpress) ? $config->url->wordpress : '#'; ?> 32 32 <a href="<?php echo esc_url($url); ?>" <?php if($url!='#') echo 'target="_blank"'; ?>> 33 <?php echo esc_ attr( $this->Theme->getVersion() ); ?>33 <?php echo esc_html( $this->Theme->getVersion() ); ?> 34 34 </a> 35 35 </div> -
bingopress/1.3.1/src/View/Template/backend/default.php
r183160 r183161 1 <?php 2 /** 3 * Default template 4 */ 5 ?> 6 1 7 <div class="bingopress-container"> 2 8 … … 7 13 <div class="w-4 h-4 bg-primary-600 rounded-full"></div> 8 14 <h1 class="text-gray-800 text-lg font-medium ml-4"> 9 <?php echo esc_ attr( $this->Page->getPageTitle()); ?>15 <?php echo esc_html__( $this->Page->getPageTitle(), 'bingopress' ); ?> 10 16 </h1> 11 17 </div> … … 56 62 <?php 57 63 /** Tab contains 2 types: External Link (https://google.com) and Internal Link (#setting) */ 58 echo strpos( $tab, '//' ) ? esc_url( $tab ) : esc_ attr( $tab );64 echo strpos( $tab, '//' ) ? esc_url( $tab ) : esc_html( $tab ); 59 65 ?> 60 66 </div> -
bingopress/1.3.1/src/View/Template/frontend/blank.php
r180347 r183161 1 1 <?php 2 /** 3 * Blank template 4 */ 5 2 6 foreach($this->sections as $bingopress_path => $options){ 3 7 $this->loadContent($bingopress_path); -
bingopress/1.3.1/style.css
r183160 r183161 8 8 * Tested up to: 6.1.1 9 9 * Requires PHP: 7.1 10 * Version: 1.3. 010 * Version: 1.3.1 11 11 * License: GPL-3.0 12 12 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt -
bingopress/1.3.1/template-parts/content/content-archive.php
r183160 r183161 56 56 <?php foreach($categories as $category): ?> 57 57 <a href="<?php echo esc_attr($category['url']) ?>" style="color: rgba(156, 163, 175, 1);"> 58 <?php echo esc_ attr($category['name']) ?>58 <?php echo esc_html($category['name']) ?> 59 59 </a> 60 60 <?php endforeach; ?> … … 67 67 ?> 68 68 <a href="<?php echo esc_attr( get_author_posts_url( get_post_field( 'post_author', get_the_ID() ) ) ) ?>" class="text-gray-400" style="text-decoration: none;"> 69 <?php echo esc_ attr( sprintf("%s", ucwords($user->display_name)) ); ?>69 <?php echo esc_html( sprintf("%s", ucwords($user->display_name)) ); ?> 70 70 </a> 71 71 </span> -
bingopress/1.3.1/template-parts/content/content-single.php
r183160 r183161 18 18 <img src="<?php echo esc_url( get_the_post_thumbnail_url(get_the_ID(), 'full') ) ?>" 19 19 class="post-featured-image mx-auto bg-white md:shadow-md" 20 alt="<?php echo esc_ attr( get_the_title() ) ?>">20 alt="<?php echo esc_html( get_the_title() ) ?>"> 21 21 </div> 22 22 <?php } else { ?> -
bingopress/1.3.1/vendor/autoload.php
r183160 r183161 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 54425312666a14e373df2bcf8e3750c8::getLoader();25 return ComposerAutoloaderInit61de4f369701a55dc424186d884508d6::getLoader(); -
bingopress/1.3.1/vendor/composer/autoload_real.php
r183160 r183161 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 54425312666a14e373df2bcf8e3750c85 class ComposerAutoloaderInit61de4f369701a55dc424186d884508d6 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 54425312666a14e373df2bcf8e3750c8', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit61de4f369701a55dc424186d884508d6', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 54425312666a14e373df2bcf8e3750c8', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit61de4f369701a55dc424186d884508d6', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 54425312666a14e373df2bcf8e3750c8::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit61de4f369701a55dc424186d884508d6::getInitializer($loader)); 31 31 32 32 $loader->register(true); -
bingopress/1.3.1/vendor/composer/autoload_static.php
r183160 r183161 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 54425312666a14e373df2bcf8e3750c87 class ComposerStaticInit61de4f369701a55dc424186d884508d6 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 28 28 { 29 29 return \Closure::bind(function () use ($loader) { 30 $loader->prefixLengthsPsr4 = ComposerStaticInit 54425312666a14e373df2bcf8e3750c8::$prefixLengthsPsr4;31 $loader->prefixDirsPsr4 = ComposerStaticInit 54425312666a14e373df2bcf8e3750c8::$prefixDirsPsr4;32 $loader->classMap = ComposerStaticInit 54425312666a14e373df2bcf8e3750c8::$classMap;30 $loader->prefixLengthsPsr4 = ComposerStaticInit61de4f369701a55dc424186d884508d6::$prefixLengthsPsr4; 31 $loader->prefixDirsPsr4 = ComposerStaticInit61de4f369701a55dc424186d884508d6::$prefixDirsPsr4; 32 $loader->classMap = ComposerStaticInit61de4f369701a55dc424186d884508d6::$classMap; 33 33 34 34 }, null, ClassLoader::class);
Note: See TracChangeset for help on using the changeset viewer.