mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-07 19:55:26 +02:00
Fix Reminder text
This commit is contained in:
parent
04c480cafa
commit
183a5ab242
2 changed files with 4 additions and 3 deletions
|
@ -5,6 +5,7 @@
|
||||||
## 2023.9.1.1
|
## 2023.9.1.1
|
||||||
|
|
||||||
- Fix cronjob Delete customer
|
- Fix cronjob Delete customer
|
||||||
|
- Fix reminder text
|
||||||
|
|
||||||
## 2023.9.1
|
## 2023.9.1
|
||||||
|
|
||||||
|
|
|
@ -22,10 +22,10 @@ ORM::configure('logging', true);
|
||||||
include "autoload/Hookers.php";
|
include "autoload/Hookers.php";
|
||||||
|
|
||||||
// notification message
|
// notification message
|
||||||
if(file_exists("system/uploads/notifications.json")){
|
if(file_exists("uploads/notifications.json")){
|
||||||
$_notifmsg =json_decode(file_get_contents('system/uploads/notifications.json'), true);
|
$_notifmsg =json_decode(file_get_contents('uploads/notifications.json'), true);
|
||||||
}
|
}
|
||||||
$_notifmsg_default = json_decode(file_get_contents('system/uploads/notifications.default.json'), true);
|
$_notifmsg_default = json_decode(file_get_contents('uploads/notifications.default.json'), true);
|
||||||
|
|
||||||
//register all plugin
|
//register all plugin
|
||||||
foreach (glob("plugin/*.php") as $filename) {
|
foreach (glob("plugin/*.php") as $filename) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue