mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 00:45:14 +02:00
Use short form array syntax everywhere
- Add short form array syntax to po2php.php generation
This commit is contained in:
parent
77dfbaa0bf
commit
e36f2bb1fb
212 changed files with 5160 additions and 5160 deletions
|
@ -69,7 +69,7 @@ function salmon_post(App $a) {
|
|||
// unpack the data
|
||||
|
||||
// strip whitespace so our data element will return to one big base64 blob
|
||||
$data = str_replace(array(" ","\t","\r","\n"),array("","","",""),$base->data);
|
||||
$data = str_replace([" ","\t","\r","\n"],["","","",""],$base->data);
|
||||
|
||||
// stash away some other stuff for later
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue