Make sure there is new data before deleting the old data

This commit is contained in:
Miles Lott 2001-06-13 15:44:56 +00:00
parent 354c91ff90
commit c73aeb5c62

View File

@ -53,6 +53,8 @@
{
$config_data = $this->config_data;
if ($config_data)
{
$this->db->lock('phpgw_config');
$this->db->query("delete from phpgw_config where config_app='" . $this->appname . "'",__LINE__,__FILE__);
while (list($name,$value) = each($config_data))
@ -64,6 +66,7 @@
}
$this->db->unlock();
}
}
function delete_repository()
{