Merge branch 'master' into develop
This commit is contained in:
commit
caa21e6021
|
@ -25,6 +25,11 @@ Version 3.3.3
|
||||||
Fix tools for translations (ddorian1)
|
Fix tools for translations (ddorian1)
|
||||||
Fix API login via LDAP (issue #1286) (fabrixxm)
|
Fix API login via LDAP (issue #1286) (fabrixxm)
|
||||||
Fix to link URL in tabs, pager (issues #1341, #1190) (ddorian1)
|
Fix to link URL in tabs, pager (issues #1341, #1190) (ddorian1)
|
||||||
|
Fix poke activities translation (fabrixxm)
|
||||||
|
Fix html escaping in templates (fabrixxm)
|
||||||
|
Fix Friendica contacts shown as Diaspora contacts via Poco (annando)
|
||||||
|
Fix shared contacts wrong linking (issue #1388) (annando)
|
||||||
|
Fix email validation (ddorian1)
|
||||||
Better documentation for developers (silke)
|
Better documentation for developers (silke)
|
||||||
|
|
||||||
Version 3.3.2
|
Version 3.3.2
|
||||||
|
|
2
boot.php
2
boot.php
|
@ -16,7 +16,7 @@ require_once('include/dbstructure.php');
|
||||||
|
|
||||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||||
define ( 'FRIENDICA_CODENAME', 'Ginger');
|
define ( 'FRIENDICA_CODENAME', 'Ginger');
|
||||||
define ( 'FRIENDICA_VERSION', '3.3.3-RC' );
|
define ( 'FRIENDICA_VERSION', '3.3.3' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1180 );
|
define ( 'DB_UPDATE_VERSION', 1180 );
|
||||||
define ( 'EOL', "<br />\r\n" );
|
define ( 'EOL', "<br />\r\n" );
|
||||||
|
|
|
@ -651,7 +651,7 @@ function validate_email($addr) {
|
||||||
return false;
|
return false;
|
||||||
$h = substr($addr,strpos($addr,'@') + 1);
|
$h = substr($addr,strpos($addr,'@') + 1);
|
||||||
|
|
||||||
if(($h) && (dns_get_record($h, DNS_A + DNS_CNAME + DNS_PTR + DNS_MX) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
|
if(($h) && (dns_get_record($h, DNS_A + DNS_CNAME + DNS_PTR + DNS_MX) || filter_var($h, FILTER_VALIDATE_IP) )) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue