mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-24 07:28:07 -05:00
refactor: run linter and cleanup php files fix: not every payment cycle was shown on the calendar feat: also show previous payments on the calendar for the current month
11 lines
170 B
PHP
11 lines
170 B
PHP
<?php
|
|
|
|
function validate($value)
|
|
{
|
|
$value = trim($value);
|
|
$value = stripslashes($value);
|
|
$value = htmlspecialchars($value);
|
|
return $value;
|
|
}
|
|
|
|
?>
|