diff --git a/html/css/style-classic7.css b/html/css/style-classic7.css
index 94bab908c..f3b19a089 100644
--- a/html/css/style-classic7.css
+++ b/html/css/style-classic7.css
@@ -855,7 +855,6 @@ input[disabled], textarea[disabled], option[disabled], optgroup[disabled], selec
a#anchorbutton, .button, a.button,div.content a.button {
color:#FFFFFF;
- font-weight: bold;
text-decoration:none;
font-family: arial,verdana,sans-serif,helvetica;
background-image: url("../image/bg-submit2.gif");
diff --git a/include/sql/patch/upgrade201.sql b/include/sql/patch/upgrade201.sql
index a688665be..e608ee68e 100644
--- a/include/sql/patch/upgrade201.sql
+++ b/include/sql/patch/upgrade201.sql
@@ -1,6 +1,6 @@
begin;
-drop VIEW public.v_quant_detail;
+drop VIEW if exists public.v_quant_detail;
CREATE OR REPLACE VIEW public.v_quant_detail
AS WITH quant AS (
@@ -70,4 +70,4 @@ AS WITH quant AS (
;
insert into version (val,v_description) values (202,'Bug with reconcile, improve view');
-commit;
\ No newline at end of file
+commit;