Skip to content

Commit c04d78e

Browse files
authored
Forgot to lowercase the result
1 parent 81f8bc8 commit c04d78e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/Action/AbstractAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function __construct($actionname = '')
2929
} else {
3030
// As of PHP 8 this seems to be the fastest way to get the name:
3131
$n = explode('\\', get_class($this));
32-
$this->actionname = array_pop($n);
32+
$this->actionname = strtolower(array_pop($n));
3333
}
3434
}
3535

0 commit comments

Comments
 (0)