From 0110270f93db2ca24a0cab9516b52ad9e6a91bc5 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sat, 13 Jul 2024 20:17:38 +0200 Subject: [PATCH] renamed folder --- application/controllers/Lookup.php | 2 +- application/controllers/Qso.php | 6 +++--- application/libraries/Pota.php | 2 +- application/libraries/Sota.php | 2 +- application/libraries/Wwff.php | 2 +- assets/{ressources => resources}/clublog_scp.txt | 0 assets/{ressources => resources}/dok.txt | 0 assets/{ressources => resources}/pota.txt | 0 assets/{ressources => resources}/sota.txt | 0 assets/{ressources => resources}/wwff.txt | 0 10 files changed, 7 insertions(+), 7 deletions(-) rename assets/{ressources => resources}/clublog_scp.txt (100%) rename assets/{ressources => resources}/dok.txt (100%) rename assets/{ressources => resources}/pota.txt (100%) rename assets/{ressources => resources}/sota.txt (100%) rename assets/{ressources => resources}/wwff.txt (100%) diff --git a/application/controllers/Lookup.php b/application/controllers/Lookup.php index 85ee7ce48..bc1398e50 100644 --- a/application/controllers/Lookup.php +++ b/application/controllers/Lookup.php @@ -98,7 +98,7 @@ class Lookup extends CI_Controller { } } } else { - $src = 'assets/ressources/clublog_scp.txt'; + $src = 'assets/resources/clublog_scp.txt'; if (copy($src, $file)) { $this->scp(); } else { diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 66cec848f..f2b0a350c 100644 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -471,7 +471,7 @@ class QSO extends CI_Controller { } } } else { - $src = 'assets/ressources/wwff.txt'; + $src = 'assets/resources/wwff.txt'; if (copy($src, $file)) { $this->get_wwff(); } else { @@ -507,7 +507,7 @@ class QSO extends CI_Controller { } } } else { - $src = 'assets/ressources/pota.txt'; + $src = 'assets/resources/pota.txt'; if (copy($src, $file)) { $this->get_pota(); } else { @@ -546,7 +546,7 @@ class QSO extends CI_Controller { } } } else { - $src = 'assets/ressources/dok.txt'; + $src = 'assets/resources/dok.txt'; if (copy($src, $file)) { $this->get_dok(); } else { diff --git a/application/libraries/Pota.php b/application/libraries/Pota.php index 34e720509..554e804e8 100644 --- a/application/libraries/Pota.php +++ b/application/libraries/Pota.php @@ -30,7 +30,7 @@ class Pota } } } else { - $src = 'assets/ressources/pota.txt'; + $src = 'assets/resources/pota.txt'; if (copy($src, $file)) { $this->get($query); } else { diff --git a/application/libraries/Sota.php b/application/libraries/Sota.php index 7d6304ff8..b892a75e9 100644 --- a/application/libraries/Sota.php +++ b/application/libraries/Sota.php @@ -30,7 +30,7 @@ class Sota } } } else { - $src = 'assets/ressources/sota.txt'; + $src = 'assets/resources/sota.txt'; if (copy($src, $file)) { $this->get($query); } else { diff --git a/application/libraries/Wwff.php b/application/libraries/Wwff.php index 54ac60166..1e1dfe9eb 100644 --- a/application/libraries/Wwff.php +++ b/application/libraries/Wwff.php @@ -30,7 +30,7 @@ class Wwff } } } else { - $src = 'assets/ressources/wwff.txt'; + $src = 'assets/resources/wwff.txt'; if (copy($src, $file)) { $this->get($query); } else { diff --git a/assets/ressources/clublog_scp.txt b/assets/resources/clublog_scp.txt similarity index 100% rename from assets/ressources/clublog_scp.txt rename to assets/resources/clublog_scp.txt diff --git a/assets/ressources/dok.txt b/assets/resources/dok.txt similarity index 100% rename from assets/ressources/dok.txt rename to assets/resources/dok.txt diff --git a/assets/ressources/pota.txt b/assets/resources/pota.txt similarity index 100% rename from assets/ressources/pota.txt rename to assets/resources/pota.txt diff --git a/assets/ressources/sota.txt b/assets/resources/sota.txt similarity index 100% rename from assets/ressources/sota.txt rename to assets/resources/sota.txt diff --git a/assets/ressources/wwff.txt b/assets/resources/wwff.txt similarity index 100% rename from assets/ressources/wwff.txt rename to assets/resources/wwff.txt