Hypolite Petovan
|
9c0d2c31e8
|
Replace AND and OR in PHP conditions by && and ||
|
2017-06-07 22:00:59 -04:00 |
|
Tobias Diekershoff
|
f3d8da7d33
|
Merge branch 'master' into develop
|
2017-06-06 12:20:55 +02:00 |
|
Michael
|
696404739b
|
Bugfix Diaspora: We exited with the wrong return values and the guid for messages was too short
|
2017-05-17 19:25:30 +00:00 |
|
Roland Häder
|
701e761c68
|
added spaces + some curly braces + some usage of dbm::is_result()
Signed-off-by: Roland Haeder <roland@mxchange.org>
|
2017-05-16 14:37:12 +02:00 |
|
Michael Vogel
|
6680ce1dd7
|
Merge pull request #3445 from Hypolite/improvement/move-probe-to-src
Move Probe to src
|
2017-05-07 23:14:22 +02:00 |
|
Hypolite Petovan
|
3a2988c3fd
|
Rename include/Scrape to include/probe
|
2017-05-07 14:45:19 -04:00 |
|
Hypolite Petovan
|
1c38540f20
|
Merge pull request #3444 from annando/1705-mail-duplicates
Mails shouldn't be duplicated anymore when sending
|
2017-05-07 13:45:34 -04:00 |
|
Michael
|
824141d3e5
|
Mails shouldn't be duplicated anymore when sending
|
2017-05-07 17:11:09 +00:00 |
|
Hypolite Petovan
|
86cae070f2
|
Merge branch 'develop' into improvement/move-app-to-src-2
|
2017-05-07 12:58:11 -04:00 |
|
Michael
|
eb0a701590
|
Just some more fixes to the protocol and the avatar stuff
|
2017-05-07 15:58:32 +00:00 |
|
Michael
|
ee817e81a2
|
Bugfix: Status messages had used the wrong field / rearranges parameter order
|
2017-05-07 14:36:50 +00:00 |
|
Michael
|
aa88691bc1
|
Diaspora: Accept new Salmon format
|
2017-05-07 13:11:11 +00:00 |
|
Michael
|
65823fe28f
|
Standards and documentation
|
2017-05-04 05:11:19 +00:00 |
|
Michael
|
a9c263a375
|
Retraction does now work as well
|
2017-05-03 19:55:33 +00:00 |
|
Michael
|
d7b56db996
|
Diaspora: Better handling for unrelayed comments and likes
|
2017-05-03 19:28:51 +00:00 |
|
Michael
|
e1ab0c9475
|
Now comments are really working
|
2017-05-03 05:22:39 +00:00 |
|
Hypolite Petovan
|
1d427aa214
|
Standards: Remove EOF closing PHP tags
|
2017-05-02 23:36:56 -04:00 |
|
Hypolite Petovan
|
20043914e6
|
Move App to src
- Add `use Friendica\App;` wherever needed
|
2017-05-02 22:59:36 -04:00 |
|
Hypolite Petovan
|
56ee734b00
|
Cleanup /format pre-move
|
2017-05-02 22:59:24 -04:00 |
|
Michael
|
83e50385a8
|
Hopefully this fixes the workflow
|
2017-05-02 21:06:56 +00:00 |
|
Michael
|
99a54df8d8
|
Follow up for PR 3421 - some improvements
|
2017-05-02 19:48:11 +00:00 |
|
Michael
|
f639a86d02
|
Comments from unknown people never reached us
|
2017-05-02 18:42:01 +00:00 |
|
Michael
|
7240b2198b
|
Missed protocol ...
|
2017-04-28 06:03:04 +00:00 |
|
Michael
|
35dc56c9c2
|
Salmons with Mastodon seem to work now
|
2017-04-27 20:38:46 +00:00 |
|
Roland Häder
|
ec57babf89
|
added spaces + some curly braces + some usage of dbm::is_result()
Signed-off-by: Roland Haeder <roland@mxchange.org>
|
2017-04-20 22:59:08 +02:00 |
|
Alexandre Alapetite
|
d2901dcb00
|
Fix for MySQL 5.7+
https://github.com/friendica/friendica/issues/2786
Only tested on Ubuntu 16.10 with MySQL 5.7.17.
https://dev.mysql.com/doc/refman/8.0/en/timestamp-initialization.html
https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html#sqlmode_no_zero_date
As of MySQL 5.7.4, NO_ZERO_DATE is deprecated.
Patch based on the following search & replace (and then reverting some
changes in libraries):
```sh
grep -l '= "0000-00-00"' -r . | xargs sed -i -e "s/= \"0000-00-00\"/=
'0000-00-00'/g"
grep -l "0000-00-00" -r . | xargs sed -i -e "s/0000-00-00/0001-01-01/g"
grep -l "!= '0001-01-01'" -r . | xargs sed -i -e "s/!= '0001-01-01'/>
'0001-01-01'/g"
grep -l " === '0001-01-01'" -r . | xargs sed -i -e "s/ === '0001-01-01'/
<= '0001-01-01'/g"
grep -l " == '0001-01-01'" -r . | xargs sed -i -e "s/ == '0001-01-01'/
<= '0001-01-01'/g"
grep -l "strpos(\$dob, '0000-') === 0" -r . | xargs sed -i -e
"s/strpos(\$dob, '0000-') === 0/strpos(\$dob, '0000-') === 0 ||
strpos(\$dob, '0001-') === 0/g"
grep -l 'array("", "0001-01-01")' -r . | xargs sed -i -e 's/array("",
"0001-01-01")/array("", "0000-00-00", "0001-01-01")/g'
grep -l "\$dob = '0000-'" -r . | xargs sed -i -e "s/\$dob =
'0000-'/\$dob = '0001-'/g"
```
|
2017-04-11 23:00:45 +02:00 |
|
Michael
|
f6d7ee2781
|
Issue 3142: mcrypt is no more (as well as phpseclib)
|
2017-04-01 08:28:42 +00:00 |
|
Michael
|
3796a141c6
|
We don't need this include anymore
|
2017-03-31 06:25:48 +00:00 |
|
Michael
|
1560534621
|
Now it's openssl - and no copy&paste failure anymore
|
2017-03-31 06:22:43 +00:00 |
|
Michael
|
973fcd3624
|
Test with OpenSSL
|
2017-03-30 23:21:52 +00:00 |
|
Michael
|
54c8fb2bb8
|
Replaces mcrypt with phpsec.
|
2017-03-30 18:29:12 +00:00 |
|
Michael
|
bc517ef3d2
|
Remove reduncancies
|
2017-03-22 05:26:44 +00:00 |
|
Hypolite Petovan
|
7b352f3f74
|
Revert "Coding convention applied - part 1"
|
2017-03-21 12:02:59 -04:00 |
|
Roland Häder
|
951006dd10
|
more spaces + some curly spaces added
Signed-off-by: Roland Häder <roland@mxchange.org>
|
2017-03-19 00:51:54 +01:00 |
|
Roland Häder
|
41a36606c6
|
added spaces + some curly braces
Signed-off-by: Roland Häder <roland@mxchange.org>
|
2017-03-19 00:50:19 +01:00 |
|
Michael
|
e5e6f4fd19
|
Better logging to analyze unwanted messages from Diaspora
|
2017-02-11 23:37:15 +00:00 |
|
Michael
|
40390cc5ec
|
Diaspora Relay: Only accept postings from anyone when the relay is configured
|
2017-02-10 20:45:22 +00:00 |
|
Michael
|
a9833a395f
|
The relay query now uses a better index
|
2017-01-13 10:37:39 +00:00 |
|
rabuzarus
|
0e64d462df
|
diaspora - add braces
|
2017-01-11 13:02:18 +01:00 |
|
rabuzarus
|
2daa0936db
|
diaspora - switch logger for "non subscribed messages" to LOGGER_DEBUG
|
2017-01-11 12:45:25 +01:00 |
|
Michael
|
ed0143c9f0
|
Merge remote-tracking branch 'upstream/develop' into 1612-unused-indexes
|
2017-01-07 16:13:57 +00:00 |
|
Michael
|
c2543f918b
|
Last minutes changes
|
2017-01-07 13:52:30 +00:00 |
|
Michael
|
cb5df4d715
|
Some corrections
|
2017-01-06 13:30:12 +00:00 |
|
Michael
|
44d966574d
|
Some more indexes and other query improvements
|
2017-01-04 19:13:50 +00:00 |
|
Roland Häder
|
9ca789b952
|
Merge remote-tracking branch 'upstream/develop' into develop
Signed-off-by: Roland Haeder <roland@mxchange.org>
|
2016-12-31 17:59:14 +01:00 |
|
Michael
|
4053499c38
|
Enable caching wirh comments
|
2016-12-30 23:18:31 +00:00 |
|
Michael
|
66902c7956
|
We now also transmit Dislikes
|
2016-12-30 22:40:30 +00:00 |
|
Michael
|
7cf70b64b8
|
We now send the participation message as well.
|
2016-12-30 22:31:21 +00:00 |
|
Michael
|
4928d00e22
|
Standard stuff
|
2016-12-30 10:03:02 +00:00 |
|
Michael
|
55ee80338f
|
Events are now shared with Diaspora.
|
2016-12-30 03:31:38 +00:00 |
|