Skip to content

Commit

Permalink
3.34
Browse files Browse the repository at this point in the history
  • Loading branch information
bugfish\bugfishtm committed Nov 30, 2024
1 parent 5e68734 commit 5c6733c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [3.34] - 2024-11-29
### Changes
- Language Class x_class_lang array from Database now same structure as from file retrieval.

## [3.33] - 2024-08-23
### Changes
- Disabled User Class un-confirmed Account Deletion on Adduser and Mail Edit Functionalities to prevent data lass. New Error Messages.
Expand Down
3 changes: 1 addition & 2 deletions _framework/classes/x_class_lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ private function init() {
if(is_array($rres)) {
foreach($rres as $key => $value) {
$newar = array();
$newar[$value["identificator"]] = $value;
array_push($this->array, $newar);
$this->array[$value["identificator"]] = $value["translation"];
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion _framework/classes/x_class_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ class x_class_version {
public $contact = "request@bugfish.eu";
public $website = "https://www.bugfish.eu";
public $github = "https://github.com/bugfishtm";
public $version = "3.33";
public $version = "3.34";
public $beta = false;
}
Binary file added _releases/3.34.zip
Binary file not shown.

0 comments on commit 5c6733c

Please sign in to comment.