diff options
author | Bernhard Fröhlich <bernhard@cacert.org> | 2012-01-05 17:30:51 +0100 |
---|---|---|
committer | Bernhard Fröhlich <bernhard@cacert.org> | 2012-01-05 17:30:51 +0100 |
commit | e314789474070c09bf1d392743705a567f222585 (patch) | |
tree | c6f1f95c85a930bc3e1ec902188feb0ab630e1bf | |
parent | 833fa287d843e0eae01c11f50f041b6ed7101b96 (diff) | |
parent | 7df3644ad3525db4591585ac1736f2d6722c8c97 (diff) | |
download | cacert-devel-bug-794.tar.gz cacert-devel-bug-794.tar.xz cacert-devel-bug-794.zip |
fixed rebase conflictsbug-794
-rwxr-xr-x | pages/account/43.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/account/43.php b/pages/account/43.php index 5156710..7bf6d04 100755 --- a/pages/account/43.php +++ b/pages/account/43.php @@ -24,10 +24,10 @@ include_once($_SESSION['_config']['filepath']."/includes/notary.inc.php"); $assurance = mysql_escape_string(intval($_REQUEST['assurance'])); $row = 0; $res = mysql_query("select `to` from `notary` where `id`='$assurance'"); - if ($res) { + if ($res) { $row = mysql_fetch_assoc($res); } - mysql_query("delete from `notary` where `id`='$assurance'"); + mysql_query("delete from `notary` where `id`='$assurance'"); if ($row) { fix_assurer_flag($row['to']); } |