mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-07 00:56:48 +01:00
Rename var, as used in isset checks
Renamed var to distinguish from ftpSite, which is checked for existance with isset and if available jumps into FTP mode. Having it previously set to false, it's available, so erroneously goes into FTP mode with no creds. This is a standalone var name now just to establish connection channel.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
$ftpSite = false;
|
||||
if ($ftpSite == 1) {
|
||||
$ftpSiteConn = false;
|
||||
if ($ftpSiteConn == 1) {
|
||||
$ftpSite = ""; // FTP site domain, eg http://yourdomain.com
|
||||
$ftpHost = ""; // FTP host, eg ftp.yourdomain.com
|
||||
$ftpUser = ""; // FTP username
|
||||
|
||||
Reference in New Issue
Block a user