Merge pull request #20 from alllinux/v1.0.1-form-checkbox-disabled

V1.0.1-rc
This commit is contained in:
Stephan Kasdorf
2024-12-03 11:17:25 +01:00
committed by GitHub
6 changed files with 35 additions and 13 deletions

View File

@@ -75,11 +75,12 @@ abstract class Db implements IDb
* @desc will update the a row with the $rowset parameter by the given id
* @param array $rowData
* @param int $id
* @param string $encrypted
* @return bool
*/
public function updateRowById(array $rowData, int $id): bool
public function updateRowById(array $rowData, int $id, string $encrypted = ""): bool
{
return Pdo::updateRowById( self::getTable()['table'], self::getTable()['fields'], $rowData, $id );
return Pdo::updateRowById( self::getTable()['table'], self::getTable()['fields'], $rowData, $id, $encrypted );
}
/**