i have some inputs:
1) Imageupload on mobiles is not a simple task, because the Uploadbutton is not (simple) reachable, with this quickhack it is a little bit comfortable:
./view/tpl/cropcover.tpl:44
./view/tpl/cropbody.tpl:45
Start with:
<h1>{{$title}}</h1>
<form action="profile_photo/{{$resource}}" id="crop-image-form" method="post" />
<p id="cropimage-desc">
{{$desc}}
</p>
<center><input type="submit" name="submit" value="{{$done}}" /></center>
delete the
<form action="profile_photo later in source
and:
dragMode: 'move',
2) EMail Registration is limited to 4 signs, i have guests with e.g. gmx.at so i changed:
./Zotlabs/Module/Invite.php
if (!preg_match('/^.{2,64}\@[a-z0-9.-]{4,32}\.[a-z]{2,12}$/', $recip)) {
->
if (!preg_match('/^.{2,64}\@[a-z0-9.-]{3,32}\.[a-z]{2,12}$/', $recip)) {
maybe i helps someone