Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AbyssMorgan committed Oct 1, 2023
1 parent 5451e9f commit 1f87301
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AVE-PHP.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "AVE-PHP"
#define MyAppVersion "1.9.2"
#define MyAppVersion "1.9.3"
#define MyAppPublisher "Abyss Morgan"
#define MyAppURL "https://github.com/AbyssMorgan"
#define MyAppExeName "AVE-PHP.cmd"
Expand Down
2 changes: 1 addition & 1 deletion includes/AVE.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class AVE extends AveCore {
public bool $abort = false;

public string $app_name = "AVE-PHP";
public string $version = "1.9.2";
public string $version = "1.9.3";

private array $folders_to_scan = [
'bin',
Expand Down
2 changes: 1 addition & 1 deletion includes/tools/MediaSorter.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function ToolSortExtension() : bool {
$items++;
if(!file_exists($file)) continue 1;
$extension = strtolower(pathinfo($file, PATHINFO_EXTENSION));
$new_name = $this->ave->get_file_path("$folder/$extension".pathinfo($file, PATHINFO_BASENAME));
$new_name = $this->ave->get_file_path("$folder/$extension/".pathinfo($file, PATHINFO_BASENAME));
if(!$this->ave->rename($file, $new_name)){
$errors++;
}
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.2
1.9.3

0 comments on commit 1f87301

Please sign in to comment.