Changeset 2693045
- Timestamp:
- 03/12/2022 09:37:12 PM (4 years ago)
- Location:
- n360-splash-screen
- Files:
-
- 2 edited
-
tags/1.0.5/n360-splash-screen.php (modified) (2 diffs)
-
trunk/n360-splash-screen.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
n360-splash-screen/tags/1.0.5/n360-splash-screen.php
r2693039 r2693045 5 5 Plugin URI: https://notion360.com/SplashScreen/ 6 6 Description: Creates a fading splash screen as a landing page for your Wordpress website 7 Version: 1.0. 47 Version: 1.0.5 8 8 Author: bistromatic 9 9 Author URI: https://notion360.com/ … … 31 31 require_once ( N360_SPLASH_PAGE_ROOT_PATH . 'includes/admin.php' ); 32 32 } else { 33 session_start(); 33 if (session_status() == PHP_SESSION_NONE) { 34 session_start(); 35 } 34 36 $home_url_rel = wp_make_link_relative(get_home_url()) . '/'; 35 37 if ( $_SERVER['REQUEST_URI'] == $home_url_rel ) { -
n360-splash-screen/trunk/n360-splash-screen.php
r2675763 r2693045 5 5 Plugin URI: https://notion360.com/SplashScreen/ 6 6 Description: Creates a fading splash screen as a landing page for your Wordpress website 7 Version: 1.0. 47 Version: 1.0.5 8 8 Author: bistromatic 9 9 Author URI: https://notion360.com/ … … 31 31 require_once ( N360_SPLASH_PAGE_ROOT_PATH . 'includes/admin.php' ); 32 32 } else { 33 session_start(); 33 if (session_status() == PHP_SESSION_NONE) { 34 session_start(); 35 } 34 36 $home_url_rel = wp_make_link_relative(get_home_url()) . '/'; 35 37 if ( $_SERVER['REQUEST_URI'] == $home_url_rel ) {
Note: See TracChangeset
for help on using the changeset viewer.