From 40c68a5391a796d6d82f858ed685c2e48db25c3e Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Wed, 20 Jan 2016 16:05:16 -0500 Subject: [PATCH] Add title to copyright --- app/Console/Commands/MakeUser.php | 1 + app/Exceptions/AccountNotFoundException.php | 1 + app/Exceptions/DisplayException.php | 1 + app/Exceptions/DisplayValidationException.php | 1 + app/Http/Controllers/API/BaseController.php | 1 + app/Http/Controllers/API/LocationController.php | 1 + app/Http/Controllers/API/NodeController.php | 1 + app/Http/Controllers/API/ServerController.php | 1 + app/Http/Controllers/API/ServiceController.php | 1 + app/Http/Controllers/API/UserController.php | 1 + app/Http/Controllers/Admin/APIController.php | 1 + app/Http/Controllers/Admin/AccountsController.php | 1 + app/Http/Controllers/Admin/BaseController.php | 1 + app/Http/Controllers/Admin/LocationsController.php | 1 + app/Http/Controllers/Admin/NodesController.php | 1 + app/Http/Controllers/Admin/ServersController.php | 1 + app/Http/Controllers/Auth/AuthController.php | 1 + app/Http/Controllers/Auth/PasswordController.php | 1 + app/Http/Controllers/Base/IndexController.php | 1 + app/Http/Controllers/Remote/RemoteController.php | 1 + app/Http/Controllers/Server/AjaxController.php | 1 + app/Http/Controllers/Server/ServerController.php | 1 + app/Http/Controllers/Server/SubuserController.php | 1 + app/Http/Middleware/APISecretToken.php | 1 + app/Http/Middleware/AdminAuthenticate.php | 1 + app/Http/Middleware/CheckServer.php | 1 + app/Http/Routes/APIRoutes.php | 1 + app/Http/Routes/AdminRoutes.php | 1 + app/Http/Routes/AuthRoutes.php | 1 + app/Http/Routes/BaseRoutes.php | 1 + app/Http/Routes/RemoteRoutes.php | 1 + app/Http/Routes/ServerRoutes.php | 1 + app/Models/APIKey.php | 1 + app/Models/APIPermission.php | 1 + app/Models/Allocation.php | 1 + app/Models/Download.php | 1 + app/Models/Location.php | 1 + app/Models/Node.php | 1 + app/Models/Permission.php | 1 + app/Models/Server.php | 1 + app/Models/ServerVariables.php | 1 + app/Models/Service.php | 1 + app/Models/ServiceOptions.php | 1 + app/Models/ServiceVariables.php | 1 + app/Models/Subuser.php | 1 + app/Models/User.php | 1 + app/Policies/ServerPolicy.php | 1 + app/Repositories/APIRepository.php | 1 + app/Repositories/Daemon/FileRepository.php | 1 + app/Repositories/HelperRepository.php | 1 + app/Repositories/LocationRepository.php | 1 + app/Repositories/NodeRepository.php | 1 + app/Repositories/ServerRepository.php | 1 + app/Repositories/SubuserRepository.php | 1 + app/Repositories/UserRepository.php | 1 + app/Services/UuidService.php | 1 + app/Transformers/NodeTransformer.php | 1 + app/Transformers/ServerTransformer.php | 1 + app/Transformers/UserTransformer.php | 1 + public/css/pterodactyl.css | 1 + public/js/admin.min.js | 1 + resources/lang/en/auth.php | 1 + resources/lang/en/base.php | 1 + resources/lang/en/pagination.php | 1 + resources/lang/en/passwords.php | 1 + resources/lang/en/server.php | 1 + resources/lang/en/strings.php | 1 + 67 files changed, 67 insertions(+) diff --git a/app/Console/Commands/MakeUser.php b/app/Console/Commands/MakeUser.php index 01e60e0d..62635c3e 100644 --- a/app/Console/Commands/MakeUser.php +++ b/app/Console/Commands/MakeUser.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Exceptions/AccountNotFoundException.php b/app/Exceptions/AccountNotFoundException.php index 83a08e4d..16603164 100644 --- a/app/Exceptions/AccountNotFoundException.php +++ b/app/Exceptions/AccountNotFoundException.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Exceptions/DisplayException.php b/app/Exceptions/DisplayException.php index 777dafce..c0abdddd 100644 --- a/app/Exceptions/DisplayException.php +++ b/app/Exceptions/DisplayException.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Exceptions/DisplayValidationException.php b/app/Exceptions/DisplayValidationException.php index f6dc2f2c..e8d319f4 100644 --- a/app/Exceptions/DisplayValidationException.php +++ b/app/Exceptions/DisplayValidationException.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/API/BaseController.php b/app/Http/Controllers/API/BaseController.php index 045b60df..7d897fe5 100644 --- a/app/Http/Controllers/API/BaseController.php +++ b/app/Http/Controllers/API/BaseController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/API/LocationController.php b/app/Http/Controllers/API/LocationController.php index 8ffdb672..e289172d 100644 --- a/app/Http/Controllers/API/LocationController.php +++ b/app/Http/Controllers/API/LocationController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/API/NodeController.php b/app/Http/Controllers/API/NodeController.php index b9967eb0..85b2ccd6 100644 --- a/app/Http/Controllers/API/NodeController.php +++ b/app/Http/Controllers/API/NodeController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/API/ServerController.php b/app/Http/Controllers/API/ServerController.php index 34902d65..0d3087ae 100644 --- a/app/Http/Controllers/API/ServerController.php +++ b/app/Http/Controllers/API/ServerController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/API/ServiceController.php b/app/Http/Controllers/API/ServiceController.php index f6d8dc77..f59164ba 100644 --- a/app/Http/Controllers/API/ServiceController.php +++ b/app/Http/Controllers/API/ServiceController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/API/UserController.php b/app/Http/Controllers/API/UserController.php index 0a16d3e4..b50aaeb8 100644 --- a/app/Http/Controllers/API/UserController.php +++ b/app/Http/Controllers/API/UserController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/Admin/APIController.php b/app/Http/Controllers/Admin/APIController.php index 8493f60f..2910c8ed 100644 --- a/app/Http/Controllers/Admin/APIController.php +++ b/app/Http/Controllers/Admin/APIController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/Admin/AccountsController.php b/app/Http/Controllers/Admin/AccountsController.php index eacfc024..d091ddd8 100644 --- a/app/Http/Controllers/Admin/AccountsController.php +++ b/app/Http/Controllers/Admin/AccountsController.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/app/Http/Controllers/Admin/BaseController.php b/app/Http/Controllers/Admin/BaseController.php index b9144b52..9d5f78d8 100644 --- a/app/Http/Controllers/Admin/BaseController.php +++ b/app/Http/Controllers/Admin/BaseController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/Admin/LocationsController.php b/app/Http/Controllers/Admin/LocationsController.php index aefb8496..86f32c8e 100644 --- a/app/Http/Controllers/Admin/LocationsController.php +++ b/app/Http/Controllers/Admin/LocationsController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/Admin/NodesController.php b/app/Http/Controllers/Admin/NodesController.php index 1b121dd3..84e50df3 100644 --- a/app/Http/Controllers/Admin/NodesController.php +++ b/app/Http/Controllers/Admin/NodesController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/Admin/ServersController.php b/app/Http/Controllers/Admin/ServersController.php index ae3450cb..c1105948 100644 --- a/app/Http/Controllers/Admin/ServersController.php +++ b/app/Http/Controllers/Admin/ServersController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/Auth/AuthController.php b/app/Http/Controllers/Auth/AuthController.php index 0286f3b6..5e2b405a 100644 --- a/app/Http/Controllers/Auth/AuthController.php +++ b/app/Http/Controllers/Auth/AuthController.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/app/Http/Controllers/Auth/PasswordController.php b/app/Http/Controllers/Auth/PasswordController.php index 549e1b67..cd878445 100644 --- a/app/Http/Controllers/Auth/PasswordController.php +++ b/app/Http/Controllers/Auth/PasswordController.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/app/Http/Controllers/Base/IndexController.php b/app/Http/Controllers/Base/IndexController.php index 01d49d3c..abf76a43 100644 --- a/app/Http/Controllers/Base/IndexController.php +++ b/app/Http/Controllers/Base/IndexController.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/app/Http/Controllers/Remote/RemoteController.php b/app/Http/Controllers/Remote/RemoteController.php index 8d86f23f..1f57cba9 100644 --- a/app/Http/Controllers/Remote/RemoteController.php +++ b/app/Http/Controllers/Remote/RemoteController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/Server/AjaxController.php b/app/Http/Controllers/Server/AjaxController.php index 2ea3e144..9e788061 100644 --- a/app/Http/Controllers/Server/AjaxController.php +++ b/app/Http/Controllers/Server/AjaxController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/Server/ServerController.php b/app/Http/Controllers/Server/ServerController.php index d2a9d759..b39377b2 100644 --- a/app/Http/Controllers/Server/ServerController.php +++ b/app/Http/Controllers/Server/ServerController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Controllers/Server/SubuserController.php b/app/Http/Controllers/Server/SubuserController.php index e852199a..963ea99a 100644 --- a/app/Http/Controllers/Server/SubuserController.php +++ b/app/Http/Controllers/Server/SubuserController.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Middleware/APISecretToken.php b/app/Http/Middleware/APISecretToken.php index 2070e22e..19e93382 100644 --- a/app/Http/Middleware/APISecretToken.php +++ b/app/Http/Middleware/APISecretToken.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Middleware/AdminAuthenticate.php b/app/Http/Middleware/AdminAuthenticate.php index df4413f2..e4c3f91b 100644 --- a/app/Http/Middleware/AdminAuthenticate.php +++ b/app/Http/Middleware/AdminAuthenticate.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Middleware/CheckServer.php b/app/Http/Middleware/CheckServer.php index 6f4b69fb..c4b06da4 100644 --- a/app/Http/Middleware/CheckServer.php +++ b/app/Http/Middleware/CheckServer.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Routes/APIRoutes.php b/app/Http/Routes/APIRoutes.php index d73e8009..644517b7 100644 --- a/app/Http/Routes/APIRoutes.php +++ b/app/Http/Routes/APIRoutes.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Routes/AdminRoutes.php b/app/Http/Routes/AdminRoutes.php index 3fd56944..d950edd1 100644 --- a/app/Http/Routes/AdminRoutes.php +++ b/app/Http/Routes/AdminRoutes.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/app/Http/Routes/AuthRoutes.php b/app/Http/Routes/AuthRoutes.php index 42422928..1f705210 100644 --- a/app/Http/Routes/AuthRoutes.php +++ b/app/Http/Routes/AuthRoutes.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/app/Http/Routes/BaseRoutes.php b/app/Http/Routes/BaseRoutes.php index a4025201..c2124462 100644 --- a/app/Http/Routes/BaseRoutes.php +++ b/app/Http/Routes/BaseRoutes.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/app/Http/Routes/RemoteRoutes.php b/app/Http/Routes/RemoteRoutes.php index 850645fc..d600161a 100644 --- a/app/Http/Routes/RemoteRoutes.php +++ b/app/Http/Routes/RemoteRoutes.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Http/Routes/ServerRoutes.php b/app/Http/Routes/ServerRoutes.php index d6bfad5e..7392a9ec 100644 --- a/app/Http/Routes/ServerRoutes.php +++ b/app/Http/Routes/ServerRoutes.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/APIKey.php b/app/Models/APIKey.php index f3bf2cef..ae40b203 100644 --- a/app/Models/APIKey.php +++ b/app/Models/APIKey.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/APIPermission.php b/app/Models/APIPermission.php index 7a06fc09..2d5b1c96 100644 --- a/app/Models/APIPermission.php +++ b/app/Models/APIPermission.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/Allocation.php b/app/Models/Allocation.php index d95b410f..77b87c3d 100644 --- a/app/Models/Allocation.php +++ b/app/Models/Allocation.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/Download.php b/app/Models/Download.php index e348028a..c3ee39d8 100644 --- a/app/Models/Download.php +++ b/app/Models/Download.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/Location.php b/app/Models/Location.php index 29fc230e..9778283f 100644 --- a/app/Models/Location.php +++ b/app/Models/Location.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/Node.php b/app/Models/Node.php index 892df8d7..02cb0936 100644 --- a/app/Models/Node.php +++ b/app/Models/Node.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/Permission.php b/app/Models/Permission.php index eed4d6a9..9322b0f8 100644 --- a/app/Models/Permission.php +++ b/app/Models/Permission.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/Server.php b/app/Models/Server.php index a93b3632..0b987faa 100644 --- a/app/Models/Server.php +++ b/app/Models/Server.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/ServerVariables.php b/app/Models/ServerVariables.php index e3032498..822a3485 100644 --- a/app/Models/ServerVariables.php +++ b/app/Models/ServerVariables.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/Service.php b/app/Models/Service.php index d701fb5c..2004588f 100644 --- a/app/Models/Service.php +++ b/app/Models/Service.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/ServiceOptions.php b/app/Models/ServiceOptions.php index 4e204a19..3d6c89ea 100644 --- a/app/Models/ServiceOptions.php +++ b/app/Models/ServiceOptions.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/ServiceVariables.php b/app/Models/ServiceVariables.php index 270439c7..a73db87c 100644 --- a/app/Models/ServiceVariables.php +++ b/app/Models/ServiceVariables.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/Subuser.php b/app/Models/Subuser.php index cf291fde..9a2d7176 100644 --- a/app/Models/Subuser.php +++ b/app/Models/Subuser.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Models/User.php b/app/Models/User.php index a8629edd..0d9766a6 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Policies/ServerPolicy.php b/app/Policies/ServerPolicy.php index c3448040..ba78c3d2 100644 --- a/app/Policies/ServerPolicy.php +++ b/app/Policies/ServerPolicy.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Repositories/APIRepository.php b/app/Repositories/APIRepository.php index bdc9e3db..1be3676e 100644 --- a/app/Repositories/APIRepository.php +++ b/app/Repositories/APIRepository.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Repositories/Daemon/FileRepository.php b/app/Repositories/Daemon/FileRepository.php index 7306ce84..b4fb2e3d 100644 --- a/app/Repositories/Daemon/FileRepository.php +++ b/app/Repositories/Daemon/FileRepository.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Repositories/HelperRepository.php b/app/Repositories/HelperRepository.php index 8f70b5ff..1ed67f13 100644 --- a/app/Repositories/HelperRepository.php +++ b/app/Repositories/HelperRepository.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Repositories/LocationRepository.php b/app/Repositories/LocationRepository.php index b9127567..e70cfbd3 100644 --- a/app/Repositories/LocationRepository.php +++ b/app/Repositories/LocationRepository.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Repositories/NodeRepository.php b/app/Repositories/NodeRepository.php index ca558391..e8286be7 100644 --- a/app/Repositories/NodeRepository.php +++ b/app/Repositories/NodeRepository.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Repositories/ServerRepository.php b/app/Repositories/ServerRepository.php index cf47faeb..ba6a6be9 100644 --- a/app/Repositories/ServerRepository.php +++ b/app/Repositories/ServerRepository.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Repositories/SubuserRepository.php b/app/Repositories/SubuserRepository.php index 1000cec3..c18e70fc 100644 --- a/app/Repositories/SubuserRepository.php +++ b/app/Repositories/SubuserRepository.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Repositories/UserRepository.php b/app/Repositories/UserRepository.php index fc14dd03..71d50c0a 100644 --- a/app/Repositories/UserRepository.php +++ b/app/Repositories/UserRepository.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/app/Services/UuidService.php b/app/Services/UuidService.php index 76246aa4..e4694c2b 100644 --- a/app/Services/UuidService.php +++ b/app/Services/UuidService.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Transformers/NodeTransformer.php b/app/Transformers/NodeTransformer.php index 7cf1ccc3..9b3224c3 100644 --- a/app/Transformers/NodeTransformer.php +++ b/app/Transformers/NodeTransformer.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Transformers/ServerTransformer.php b/app/Transformers/ServerTransformer.php index ca6b6dba..482cf841 100644 --- a/app/Transformers/ServerTransformer.php +++ b/app/Transformers/ServerTransformer.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/Transformers/UserTransformer.php b/app/Transformers/UserTransformer.php index 43259a5b..abd90c34 100644 --- a/app/Transformers/UserTransformer.php +++ b/app/Transformers/UserTransformer.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/public/css/pterodactyl.css b/public/css/pterodactyl.css index 1bc5863c..176c14d3 100755 --- a/public/css/pterodactyl.css +++ b/public/css/pterodactyl.css @@ -1,4 +1,5 @@ /** + * Pterodactyl - Panel * Copyright (c) 2015 - 2016 Dane Everitt * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/public/js/admin.min.js b/public/js/admin.min.js index 064f334d..b6ed01f4 100755 --- a/public/js/admin.min.js +++ b/public/js/admin.min.js @@ -1,4 +1,5 @@ /** + * Pterodactyl - Panel * Copyright (c) 2015 - 2016 Dane Everitt * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/resources/lang/en/auth.php b/resources/lang/en/auth.php index e89ec27b..3c012e28 100644 --- a/resources/lang/en/auth.php +++ b/resources/lang/en/auth.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/resources/lang/en/base.php b/resources/lang/en/base.php index e8f8b30c..50c0974f 100644 --- a/resources/lang/en/base.php +++ b/resources/lang/en/base.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/resources/lang/en/pagination.php b/resources/lang/en/pagination.php index 1ccbb6dc..edc90543 100644 --- a/resources/lang/en/pagination.php +++ b/resources/lang/en/pagination.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/resources/lang/en/passwords.php b/resources/lang/en/passwords.php index 08238a48..542618ce 100644 --- a/resources/lang/en/passwords.php +++ b/resources/lang/en/passwords.php @@ -1,5 +1,6 @@ * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/resources/lang/en/server.php b/resources/lang/en/server.php index d727538f..68ac697d 100644 --- a/resources/lang/en/server.php +++ b/resources/lang/en/server.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt * diff --git a/resources/lang/en/strings.php b/resources/lang/en/strings.php index 6c4204ef..89e22123 100644 --- a/resources/lang/en/strings.php +++ b/resources/lang/en/strings.php @@ -1,5 +1,6 @@ * Some Modifications (c) 2015 Dylan Seidt *