Changeset 2500538
- Timestamp:
- 03/21/2021 08:23:19 PM (5 years ago)
- Location:
- stapp-video
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3 (copied) (copied from stapp-video/trunk)
-
tags/1.3/includes/db/stapp_video_readData.php (modified) (2 diffs)
-
tags/1.3/readme.txt (modified) (2 diffs)
-
tags/1.3/stapp_video.php (modified) (2 diffs)
-
trunk/includes/db/stapp_video_readData.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/stapp_video.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
stapp-video/tags/1.3/includes/db/stapp_video_readData.php
r2500469 r2500538 2 2 3 3 include_once STAPP_VIDEO_PLUGIN_DIR."/includes/db/stapp_video_global_db.php"; 4 include_once STAPP_VIDEO_PLUGIN_DIR."/includes/stapp_activate_plugin.php"; 4 5 5 6 … … 229 230 230 231 private function isProEnabeled(){ 231 if (get_option('stapp_video_pro_value') == 1){ 232 return true; 233 } 234 return false; 235 } 236 237 } 232 $this->checkOptionExists('stapp_video_pro_value'); 233 if (get_option('stapp_video_pro_value') == 1){ 234 return true; 235 } 236 return false; 237 } 238 239 240 private function checkOptionExists($optionKey){ 241 $option = trim( get_option($optionKey)); 242 if ( empty( $option ) ) { 243 $c = new stapp_video_activate_plugin(); 244 $c->activate(); 245 } 246 } 247 248 } -
stapp-video/tags/1.3/readme.txt
r2500470 r2500538 6 6 Tested up to: 5.7 7 7 Requires PHP: 7.0 8 Stable tag: 1. 28 Stable tag: 1.3 9 9 License: GPLv3 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 == Changelog == 40 40 41 42 = 1.3 = 43 44 * Bugfix after updating from V1.0 45 46 41 47 = 1.2 = 42 48 -
stapp-video/tags/1.3/stapp_video.php
r2500469 r2500538 7 7 Plugin URI: https://dev-wordpress.com/forum/ 8 8 Description: Insert videos on any postion via shortcode 9 Version: 1. 29 Version: 1.3 10 10 Author: STApp Professional GmbH 11 11 Author URI: https://stapp-professional.de … … 24 24 25 25 26 define( 'STAPP_VIDEO_VERSION', '1. 2' );26 define( 'STAPP_VIDEO_VERSION', '1.3' ); 27 27 28 28 define( 'STAPP_VIDEO_REQUIRED_WP_VERSION', '5.7' ); -
stapp-video/trunk/includes/db/stapp_video_readData.php
r2500469 r2500538 2 2 3 3 include_once STAPP_VIDEO_PLUGIN_DIR."/includes/db/stapp_video_global_db.php"; 4 include_once STAPP_VIDEO_PLUGIN_DIR."/includes/stapp_activate_plugin.php"; 4 5 5 6 … … 229 230 230 231 private function isProEnabeled(){ 231 if (get_option('stapp_video_pro_value') == 1){ 232 return true; 233 } 234 return false; 235 } 236 237 } 232 $this->checkOptionExists('stapp_video_pro_value'); 233 if (get_option('stapp_video_pro_value') == 1){ 234 return true; 235 } 236 return false; 237 } 238 239 240 private function checkOptionExists($optionKey){ 241 $option = trim( get_option($optionKey)); 242 if ( empty( $option ) ) { 243 $c = new stapp_video_activate_plugin(); 244 $c->activate(); 245 } 246 } 247 248 } -
stapp-video/trunk/readme.txt
r2500470 r2500538 6 6 Tested up to: 5.7 7 7 Requires PHP: 7.0 8 Stable tag: 1. 28 Stable tag: 1.3 9 9 License: GPLv3 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 == Changelog == 40 40 41 42 = 1.3 = 43 44 * Bugfix after updating from V1.0 45 46 41 47 = 1.2 = 42 48 -
stapp-video/trunk/stapp_video.php
r2500469 r2500538 7 7 Plugin URI: https://dev-wordpress.com/forum/ 8 8 Description: Insert videos on any postion via shortcode 9 Version: 1. 29 Version: 1.3 10 10 Author: STApp Professional GmbH 11 11 Author URI: https://stapp-professional.de … … 24 24 25 25 26 define( 'STAPP_VIDEO_VERSION', '1. 2' );26 define( 'STAPP_VIDEO_VERSION', '1.3' ); 27 27 28 28 define( 'STAPP_VIDEO_REQUIRED_WP_VERSION', '5.7' );
Note: See TracChangeset
for help on using the changeset viewer.