| @@ -3,9 +3,9 @@ | ||
| 3 | 3 | /* |
| 4 | 4 | Plugin Name: Redirection |
| 5 | 5 | Plugin URI: https://redirection.me/ |
| 6 | 6 | Description: Manage all your 301 redirects and monitor 404 errors |
| 7 | -Version: 4.8 | |
| 7 | +Version: 4.9 | |
| 8 | 8 | Author: John Godley |
| 9 | 9 | Text Domain: redirection |
| 10 | 10 | Domain Path: /locale |
| 11 | 11 | ============================================================================================================ |
| @@ -20,9 +20,9 @@ | ||
| 20 | 20 | For full license details see license.txt |
| 21 | 21 | ============================================================================================================ |
| 22 | 22 | */ |
| 23 | 23 | |
| 24 | -define( 'REDIRECTION_DB_VERSION', '4.1' ); // DB schema version. Only change if DB needs changing | |
| 24 | +define( 'REDIRECTION_DB_VERSION', '4.2' ); // DB schema version. Only change if DB needs changing | |
| 25 | 25 | define( 'REDIRECTION_FILE', __FILE__ ); |
| 26 | 26 | define( 'REDIRECTION_DEV_MODE', false ); |
| 27 | 27 | |
| 28 | 28 | if ( ! defined( 'REDIRECTION_FLYING_SOLO' ) ) { |
| @@ -43,11 +43,13 @@ | ||
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | require_once __DIR__ . '/redirection-version.php'; |
| 46 | 46 | require_once __DIR__ . '/redirection-settings.php'; |
| 47 | -require_once __DIR__ . '/models/redirect.php'; | |
| 47 | +require_once __DIR__ . '/models/redirect/redirect.php'; | |
| 48 | +require_once __DIR__ . '/models/url/url.php'; | |
| 49 | +require_once __DIR__ . '/models/regex.php'; | |
| 48 | 50 | require_once __DIR__ . '/models/module.php'; |
| 49 | -require_once __DIR__ . '/models/log.php'; | |
| 51 | +require_once __DIR__ . '/models/log/log.php'; | |
| 50 | 52 | require_once __DIR__ . '/models/flusher.php'; |
| 51 | 53 | require_once __DIR__ . '/models/match.php'; |
| 52 | 54 | require_once __DIR__ . '/models/action.php'; |
| 53 | 55 | require_once __DIR__ . '/models/request.php'; |