mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 21:13:26 +00:00
Merge branch '3.8'
Conflicts: lib/Alchemy/Phrasea/Controller/Prod/Export.php lib/Alchemy/Phrasea/Core/Version.php lib/Alchemy/Phrasea/Helper/Prod.php lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php lib/classes/User/Adapter.php lib/classes/caption/Field/Value.php lib/classes/collection.php lib/classes/module/report/filter.php lib/classes/task/period/ftp.php templates/web/common/dialog_export.html.twig templates/web/report/ajax_dashboard_content_child.html.twig tests/Alchemy/Tests/Phrasea/Controller/Admin/UsersTest.php
This commit is contained in:
@@ -228,7 +228,7 @@ class ftpclient
|
||||
{
|
||||
$ret = @ftp_nb_put($this->connexion, $remotefile, $localfile, FTP_BINARY, $start);
|
||||
|
||||
while ($ret == FTP_MOREDATA) {
|
||||
while ($ret === FTP_MOREDATA) {
|
||||
set_time_limit(20);
|
||||
$ret = ftp_nb_continue($this->connexion);
|
||||
}
|
||||
@@ -280,7 +280,7 @@ class ftpclient
|
||||
|
||||
$ret = @ftp_nb_get($this->connexion, $localfile, $remotefile, FTP_BINARY, $start);
|
||||
|
||||
while ($ret == FTP_MOREDATA) {
|
||||
while ($ret === FTP_MOREDATA) {
|
||||
set_time_limit(20);
|
||||
$ret = ftp_nb_continue($this->connexion);
|
||||
}
|
||||
|
Reference in New Issue
Block a user