mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
minor fixes
This commit is contained in:
parent
909db91184
commit
2a33bb31e2
@ -199,16 +199,16 @@ class Request extends FormRequest
|
||||
}
|
||||
|
||||
if(isset($input['public_notes']))
|
||||
$input['public_notes'] = str_replace("</","<-", $input['public_notes']);
|
||||
$input['public_notes'] = str_replace("</sc","<-", $input['public_notes']);
|
||||
|
||||
if(isset($input['footer']))
|
||||
$input['footer'] = str_replace("</", "<-", $input['footer']);
|
||||
$input['footer'] = str_replace("</sc", "<-", $input['footer']);
|
||||
|
||||
if(isset($input['terms']))
|
||||
$input['terms'] = str_replace("</", "<-", $input['terms']);
|
||||
$input['terms'] = str_replace("</sc", "<-", $input['terms']);
|
||||
|
||||
if(isset($input['private_notes']))
|
||||
$input['private_notes'] = str_replace("</", "<-", $input['private_notes']);
|
||||
$input['private_notes'] = str_replace("</sc", "<-", $input['private_notes']);
|
||||
|
||||
return $input;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user