diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -56,7 +56,6 @@ require_once 'inc/rain.tpl.class.php'; | |||
56 | require_once __DIR__ . '/vendor/autoload.php'; | 56 | require_once __DIR__ . '/vendor/autoload.php'; |
57 | 57 | ||
58 | // Shaarli library | 58 | // Shaarli library |
59 | require_once 'application/ApplicationUtils.php'; | ||
60 | require_once 'application/bookmark/LinkUtils.php'; | 59 | require_once 'application/bookmark/LinkUtils.php'; |
61 | require_once 'application/config/ConfigPlugin.php'; | 60 | require_once 'application/config/ConfigPlugin.php'; |
62 | require_once 'application/feed/Cache.php'; | 61 | require_once 'application/feed/Cache.php'; |
@@ -71,6 +70,7 @@ require_once 'application/Utils.php'; | |||
71 | require_once 'application/PluginManager.php'; | 70 | require_once 'application/PluginManager.php'; |
72 | require_once 'application/Router.php'; | 71 | require_once 'application/Router.php'; |
73 | 72 | ||
73 | use \Shaarli\ApplicationUtils; | ||
74 | use \Shaarli\Bookmark\Exception\LinkNotFoundException; | 74 | use \Shaarli\Bookmark\Exception\LinkNotFoundException; |
75 | use \Shaarli\Bookmark\LinkDB; | 75 | use \Shaarli\Bookmark\LinkDB; |
76 | use \Shaarli\Config\ConfigManager; | 76 | use \Shaarli\Config\ConfigManager; |
@@ -83,7 +83,7 @@ use \Shaarli\Render\ThemeUtils; | |||
83 | use \Shaarli\Security\LoginManager; | 83 | use \Shaarli\Security\LoginManager; |
84 | use \Shaarli\Security\SessionManager; | 84 | use \Shaarli\Security\SessionManager; |
85 | use \Shaarli\Thumbnailer; | 85 | use \Shaarli\Thumbnailer; |
86 | use Shaarli\Updater\Updater; | 86 | use \Shaarli\Updater\Updater; |
87 | 87 | ||
88 | // Ensure the PHP version is supported | 88 | // Ensure the PHP version is supported |
89 | try { | 89 | try { |