Skip to content
Snippets Groups Projects
Commit 378935a8 authored by nveid's avatar nveid
Browse files

Fixed mysql error when switching from "Options" tab to "Ftp User" edit tab,

the onUpdate thought we were trying to change the Website because the Options
Datalog didn't have the parent_domain_id and the Ftp User tab did.
parent 45c0e8c9
No related branches found
No related tags found
2 merge requests!46Master,!21Master
...@@ -139,9 +139,7 @@ class page_action extends tform_actions { ...@@ -139,9 +139,7 @@ class page_action extends tform_actions {
$sql = "UPDATE ftp_user SET server_id = $server_id, dir = '$dir', uid = '$uid', gid = '$gid', sys_groupid = '$sys_groupid' WHERE ftp_user_id = ".$this->id; $sql = "UPDATE ftp_user SET server_id = $server_id, dir = '$dir', uid = '$uid', gid = '$gid', sys_groupid = '$sys_groupid' WHERE ftp_user_id = ".$this->id;
$app->db->query($sql); $app->db->query($sql);
}
}
function onBeforeUpdate() { function onBeforeUpdate() {
global $app, $conf, $interfaceConf; global $app, $conf, $interfaceConf;
...@@ -165,7 +163,7 @@ class page_action extends tform_actions { ...@@ -165,7 +163,7 @@ class page_action extends tform_actions {
global $app, $conf; global $app, $conf;
//* When the site of the FTP user has been changed //* When the site of the FTP user has been changed
if($this->oldDataRecord['parent_domain_id'] != $this->dataRecord['parent_domain_id']) { if(isset($this->dataRecord['parent_domain_id']) && $this->oldDataRecord['parent_domain_id'] != $this->dataRecord['parent_domain_id']) {
$web = $app->db->queryOneRecord("SELECT * FROM web_domain WHERE domain_id = ".intval($this->dataRecord["parent_domain_id"])); $web = $app->db->queryOneRecord("SELECT * FROM web_domain WHERE domain_id = ".intval($this->dataRecord["parent_domain_id"]));
$server_id = $web["server_id"]; $server_id = $web["server_id"];
$dir = $web["document_root"]; $dir = $web["document_root"];
...@@ -206,4 +204,4 @@ class page_action extends tform_actions { ...@@ -206,4 +204,4 @@ class page_action extends tform_actions {
$page = new page_action; $page = new page_action;
$page->onLoad(); $page->onLoad();
?> ?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment