mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-18 21:40:52 -04:00
Fixed incorrectly named function for route.
This commit is contained in:
@@ -25,8 +25,10 @@ class Home extends Secure_Controller
|
||||
|
||||
/**
|
||||
* Load "change employee password" form
|
||||
*
|
||||
* @noinspection PhpUnused
|
||||
*/
|
||||
public function change_password(int $employee_id = -1): void //TODO: Replace -1 with a constant
|
||||
public function getChangePassword(int $employee_id = -1): void //TODO: Replace -1 with a constant
|
||||
{
|
||||
$person_info = $this->employee->get_info($employee_id);
|
||||
foreach(get_object_vars($person_info) as $property => $value)
|
||||
|
||||
Reference in New Issue
Block a user