Skip to content

Commit f160f11

Browse files
1.30.1
1 parent a2844d5 commit f160f11

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

AutoLoadOne.php

+6-5
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@
4040
*
4141
* @copyright Jorge Castro C. MIT License https://github.com/EFTEC/AutoLoadOne
4242
*
43-
* @version 1.30 2025-02-21
43+
* @version 1.30.1 2025-02-21
4444
* @noautoload
4545
*/
4646
class AutoLoadOne
4747
{
48-
public const VERSION = '1.30';
48+
public const VERSION = '1.30.1';
4949
public ?string $rooturl = '';
5050
public ?string $fileGen = '';
5151
public ?int $savefile = 1;
@@ -252,10 +252,10 @@ private function getAllParametersCli(): void
252252
$this->rooturl = $this->fixSeparator($this->getParameterCli('folder'));
253253
$this->fileGen = $this->fixSeparator($this->getParameterCli('filegen'));
254254
$this->fileGen = ($this->fileGen === '.') ? $this->rooturl : $this->fileGen;
255-
$this->savefile = $this->getParameterCli('save');
255+
$this->savefile = $this->getParameterCli('save')==="yes" ? 1:0;
256256
$this->savefileName = $this->getParameterCli('savefilename', 'autoload.php');
257-
$this->stop = $this->getParameterCli('stop');
258-
$this->compression = $this->getParameterCli('compression');
257+
$this->stop = $this->getParameterCli('stop') === "yes" ? 1 : 0;
258+
$this->compression = $this->getParameterCli('compression') === "yes" ? 1 : 0;
259259
$this->current = $this->getParameterCli('current', true);
260260
$this->excludeNS = $this->getParameterCli('excludens');
261261
$this->excludePath = $this->getParameterCli('excludepath');
@@ -338,6 +338,7 @@ private function initWeb(): void
338338
$this->stop = @$_POST['stop'];
339339
$this->compression = @$_POST['compression'];
340340
}
341+
/** @noinspection PhpConditionAlreadyCheckedInspection */
341342
if ($this->button === 'logout') {
342343
@session_destroy();
343344
$this->logged = 0;

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -614,6 +614,8 @@ reads the composer.json files once.
614614

615615

616616
## Version
617+
* 1.30.1 2025-02-21
618+
* Fixed a problem with the command line.
617619
* 1.30 2025-02-21
618620
* Fixed external path.
619621
* Fixed a warning with a float value.

0 commit comments

Comments
 (0)