diff options
Diffstat (limited to 'php/database.php')
-rw-r--r-- | php/database.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/php/database.php b/php/database.php index f5efec7..789ea86 100644 --- a/php/database.php +++ b/php/database.php @@ -347,11 +347,12 @@ require_once "node.php"; /*generate the node*/ $code=$this->get_random_node_name(""); if($filename==NULL)return "error"; - $prep=$this->pdo->prepare("insert into nodes(is_directory,relative_path,code) - values(false,:root,:code) + $prep=$this->pdo->prepare("insert into nodes(is_directory,relative_path,code,type) + values(false,:root,:code,:type) "); $prep->bindParam(':root',$code); $prep->bindParam(':code',$code); + $prep->bindParam(':type',$mimetype); if($prep->execute()==false) { |