Hypolite Petovan
|
6b8ad57399
|
Add error handling for missing contacts
|
2017-04-11 21:18:34 -04:00 |
|
Alexandre Alapetite
|
15a44d945b
|
Another GROUP BY fix for MySQL
https://github.com/friendica/friendica/issues/3322
|
2017-04-12 01:06:08 +02:00 |
|
Alexandre Alapetite
|
dbbe6efd27
|
Fix ostatus bug related to only_full_group_by
https://github.com/friendica/friendica/issues/3322
|
2017-04-12 00:19:05 +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 Vogel
|
0d2bf557de
|
Merge pull request #3315 from Hypolite/issue/#3285
Add spoiler tags for Mastodon Content Warning
|
2017-04-11 18:28:43 +02:00 |
|
Hypolite Petovan
|
762e8eda7a
|
Use get_contact_details_by_url for unknown contacts
- Fix typo
- Fix comment
- Fix closure
|
2017-04-11 02:41:19 -04:00 |
|
Hypolite Petovan
|
21bb47a2e5
|
Added "braces" for @annando
|
2017-04-11 02:12:14 -04:00 |
|
Michael Vogel
|
8398270cee
|
Merge pull request #3320 from Hypolite/issue/#3292
Ignore Activity Streams `delete` messages from Mastodon
|
2017-04-11 07:39:05 +02:00 |
|
Hypolite Petovan
|
ca7c2bfa00
|
Ignore Activity Streams delete messages from Mastodon
|
2017-04-10 22:20:03 -04:00 |
|
Hypolite Petovan
|
7f2fddea69
|
Add network for unknown contacts in ACL
|
2017-04-10 22:10:05 -04:00 |
|
Hypolite Petovan
|
05a5e1792d
|
Left trim at sign from nicks in ACL
|
2017-04-10 22:09:49 -04:00 |
|
Hypolite Petovan
|
e45da5bcd3
|
Rewrote code according to @annando feedback
- Normalize boolean operators
|
2017-04-10 21:11:28 -04:00 |
|
Hypolite Petovan
|
ada5c4cc6a
|
Add Content Warning support for comments too
Doh!
|
2017-04-10 00:57:36 -04:00 |
|
Hypolite Petovan
|
69d157c319
|
Add spoiler tags for Mastodon Content Warning
|
2017-04-10 00:08:14 -04:00 |
|
Hypolite Petovan
|
b9c0c114fb
|
Merge pull request #3312 from rabuzarus/20170409_-_fix_desktop_notifs
Bugfix: Desktop-notifs - show notifs which have seen = false or seen = 0
|
2017-04-09 09:22:20 -04:00 |
|
rabuzarus
|
836e0b2799
|
Bugfix: Desktop-notifs - show notifs which have seen = false or seen = 0
|
2017-04-09 14:24:26 +02:00 |
|
rabuzarus
|
0e177e6d5e
|
Merge pull request #3311 from tobiasd/20170409-ru
RU translations THX pztrn
|
2017-04-09 12:50:33 +02:00 |
|
Tobias Diekershoff
|
dad89a125a
|
RU translations THX pztrn
|
2017-04-09 07:35:12 +02:00 |
|
Hypolite Petovan
|
ffbf330585
|
Merge pull request #3310 from annando/1704-probing
Avoid possible problems with numeric nicknames and GNU Social
|
2017-04-09 01:08:12 -04:00 |
|
Michael
|
5c75fe4c14
|
Avoid possible problems with numeric nicknames and GNU Social
|
2017-04-09 04:29:02 +00:00 |
|
Hypolite Petovan
|
c627780600
|
Merge pull request #3307 from rebeka-catalina/space_before_t
Space before t
|
2017-04-08 23:18:26 -04:00 |
|
Hypolite Petovan
|
472345d740
|
Merge branch 'develop' into space_before_t
|
2017-04-08 23:17:31 -04:00 |
|
Michael Vogel
|
1a05efb026
|
Merge pull request #3308 from rabuzarus/20170408_-_fix_desktop_notifs
Desktop-Notifs: include the user id into the storage key for local browser storage
|
2017-04-08 21:15:04 +02:00 |
|
rabuzarus
|
8bd41592ef
|
Desktop-Notifs: include the user id into the storage key for local browser storage
|
2017-04-08 20:25:10 +02:00 |
|
Hypolite Petovan
|
29eac5ca49
|
Merge pull request #3304 from rebeka-catalina/local_dir_warning
Local dir warning
|
2017-04-08 13:11:27 -04:00 |
|
rebeka-catalina
|
050675a629
|
The other lone comma in 1177
|
2017-04-08 18:07:30 +02:00 |
|
rebeka-catalina
|
554704e6b9
|
Added a whitespace between comma and t()
|
2017-04-08 16:57:24 +02:00 |
|
rebeka-catalina
|
d8a8fa9baa
|
Modified the warning message
|
2017-04-08 16:48:11 +02:00 |
|
rebeka-catalina
|
7320327fa1
|
Deleted the lone comma between paratheses
|
2017-04-08 16:37:18 +02:00 |
|
rebeka-catalina
|
895a6254a0
|
Correction of 1177 and added modification to 1171
|
2017-04-08 15:48:15 +02:00 |
|
Tobias Diekershoff
|
42cc8d729b
|
Merge pull request #3306 from Hypolite/issue/#3274
Fix path to default Text_Highlighter CSS
|
2017-04-08 15:24:16 +02:00 |
|
Hypolite Petovan
|
318166a381
|
Fix path to default Text_Highlighter CSS
|
2017-04-08 08:59:41 -04:00 |
|
rebeka-catalina
|
fa76ec4e33
|
Merge branch 'develop' of git://github.com/friendica/friendica into develop
|
2017-04-08 14:50:45 +02:00 |
|
rebeka-catalina
|
bcfbfeeba4
|
adding space for readability
|
2017-04-08 13:52:37 +02:00 |
|
Hypolite Petovan
|
5592837f71
|
Merge pull request #3305 from rabuzarus/20170408_-_fix_frio_css_nav_account_button
Bugfix: there was a gui issue on the navbar account dropdown button
|
2017-04-08 07:49:12 -04:00 |
|
rabuzarus
|
c65fc6f8de
|
Bugfix: there was a gui issue on the navbar account dropdown button
|
2017-04-08 13:30:16 +02:00 |
|
rebeka-catalina
|
4c9c83e8e8
|
Warning, that profile published in local directory may be visible in public
|
2017-04-08 13:21:35 +02:00 |
|
rabuzarus
|
c58d7715ef
|
Merge pull request #3303 from annando/1704-duplicate-feed
Avoid duplicates with feeds and "remote self"
|
2017-04-08 13:20:46 +02:00 |
|
rebeka-catalina
|
892ef45474
|
Warning, that profile published in local directory may be visible in public
|
2017-04-08 13:13:38 +02:00 |
|
Michael
|
c94525938d
|
Merge remote-tracking branch 'upstream/develop' into 1704-duplicate-feed
|
2017-04-08 10:05:01 +00:00 |
|
rebeka-catalina
|
291906de5f
|
Merge branch 'develop' of http://github.com/rebeka-catalina/friendica into develop
|
2017-04-08 11:42:20 +02:00 |
|
Michael
|
8786bcdf0a
|
Avoid duplicates with feeds and "remote self"
|
2017-04-08 08:12:14 +00:00 |
|
rabuzarus
|
366ccdb09a
|
Merge pull request #3301 from annando/issue-3300
The temp path creation couldn't create a subdirectory with the hostname
|
2017-04-07 23:48:32 +02:00 |
|
Michael
|
47a6f6b726
|
Issue 3300: The temp path creation couldn't create a subdirectory with the hostname
|
2017-04-07 21:34:06 +00:00 |
|
Michael Vogel
|
56c0675fba
|
Merge pull request #3295 from Hypolite/issue/#3274
Friendica code blocks aren't rendered in Diaspora
|
2017-04-07 22:59:44 +02:00 |
|
fabrixxm
|
07f93b9636
|
Merge pull request #3298 from tobiasd/20170407-quattroadin
the Quattro admin_user template was missing the users note for the admin
|
2017-04-07 14:31:28 +02:00 |
|
Tobias Diekershoff
|
fb94a0add7
|
the Quattro admin_user template was missing the users note for the admin
|
2017-04-07 12:59:22 +02:00 |
|
Tobias Diekershoff
|
b5a42c5b31
|
Merge pull request #3297 from rabuzarus/20170407_-_fix_bulk_deletion_button
Bugfix: bulk deletion button was not available anymore
|
2017-04-07 11:45:00 +02:00 |
|
rabuzarus
|
39ccbe2e45
|
Merge pull request #3296 from tobiasd/20170407-isresult
small fix for #3254
|
2017-04-07 11:41:38 +02:00 |
|
rabuzarus
|
a9b3696560
|
Bugfix: bulk deletion button was not available anymore
|
2017-04-07 11:35:45 +02:00 |
|