remove class_exists wrapper for class definitions

This commit is contained in:
Tim Fry 2025-03-12 11:10:59 -03:00
parent 09e68bf89b
commit f75c9459dc
1 changed files with 1 additions and 5 deletions

View File

@ -1,6 +1,5 @@
<?php
if (!class_exists('install')) {
class install {
/**
@ -154,7 +153,7 @@ if (!class_exists('install')) {
if(!$file_handle) { return; }
fwrite($file_handle, $conf);
fclose($file_handle);
//if the config.conf file was saved return true
if (file_exists($config_file)) {
return true;
@ -166,6 +165,3 @@ if (!class_exists('install')) {
}
}
}
?>