Compare commits

..

3 Commits

Author SHA1 Message Date
3c1580aa36 Fix when cloning an attribute, ensure we blank out the previous value. When processing request submission '0' could be a valid value.
All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 32s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m20s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 3m32s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s
2025-01-17 18:38:57 +11:00
f5fc0dbe32 For rebuild of cache assets, since hashFiles() doesnt work 2025-01-17 18:38:57 +11:00
5bd3b2de34 Foundation for Check Password and password functions - only Clear is currently implemented 2025-01-17 18:38:57 +11:00

View File

@ -162,7 +162,6 @@ class HomeController extends Controller
foreach ($request->except(['_token','dn']) as $key => $value) foreach ($request->except(['_token','dn']) as $key => $value)
$o->{$key} = array_filter($value); $o->{$key} = array_filter($value);
dd($o->getDirty(),$o,$request->all());
if (! $dirty=$o->getDirty()) if (! $dirty=$o->getDirty())
return back() return back()
->withInput() ->withInput()