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 |
|
Hypolite Petovan
|
7b352f3f74
|
Revert "Coding convention applied - part 1"
|
2017-03-21 12:02:59 -04:00 |
|
Roland Häder
|
0cd241bcbe
|
added spaces + some curly braces + some usage of dbm::is_result()
Signed-off-by: Roland Häder <roland@mxchange.org>
|
2017-03-19 00:44:40 +01:00 |
|
Hypolite Petovan
|
f92918f471
|
Normalize App parameter declaration (mod folder, 2 out of 3)
|
2017-01-09 23:14:25 +11:00 |
|
Roland Häder
|
4dce3d8224
|
changed to this:
---------------------
function bla (App &$a) {
$a->bla = 'stuff';
}
---------------------
Signed-off-by: Roland Häder <roland@mxchange.org>
|
2016-12-20 10:58:55 +01:00 |
|
Michael Vogel
|
60a0235af0
|
The account type is now read and displayed
|
2016-10-01 20:03:27 +00:00 |
|
rabuzarus
|
60b767168a
|
hovercard.php - fix tags for hovercard
|
2016-06-27 11:57:47 +02:00 |
|
Michael Vogel
|
71d3274841
|
Unified contact data handling
|
2016-06-05 13:57:11 +02:00 |
|
Michael Vogel
|
98f7c73d10
|
Frio: Hovercard is now a core function
|
2016-05-29 15:28:31 +02:00 |
|