21 lines
400 B
PHP
21 lines
400 B
PHP
<?php
|
|
/**
|
|
* Backwards compatibility with the sunrise flow for v1.
|
|
*
|
|
* This is useful when the user makes use of the rollback
|
|
* function, which renders their sunrise.php file on the v2
|
|
* version as we cannot safely roll that file back.
|
|
*
|
|
* @since 2.0.7
|
|
* @package Backwards_Compat
|
|
*/
|
|
|
|
// Exit if accessed directly
|
|
defined('ABSPATH') || exit;
|
|
|
|
/**
|
|
* Silence is golden.
|
|
*
|
|
* @since 2.0.7
|
|
*/
|