Merge branch '4.0' of git@github.com:Dolibarr/dolibarr.git into develop

Conflicts:
	ChangeLog
	dev/skeletons/skeleton_list.php
	htdocs/accountancy/class/html.formventilation.class.php
	htdocs/core/lib/cron.lib.php
	htdocs/core/tpl/admin_extrafields_add.tpl.php
This commit is contained in:
Laurent Destailleur
2016-10-01 18:42:50 +02:00
38 changed files with 344 additions and 153 deletions

View File

@@ -1105,12 +1105,12 @@ class CMailFile
$_retVal = true; // Indicates if Object was created or not
$server_response = '';
while ( substr($server_response,3,1) != ' ' )
while (substr($server_response,3,1) != ' ')
{
if( !( $server_response = fgets($socket, 256) ) )
if (! ($server_response = fgets($socket, 256)) )
{
$this->error="Couldn't get mail server response codes";
$_retVal = false;
return false;
}
}