From: Mike Rylander Date: Fri, 6 May 2011 16:58:17 +0000 (-0400) Subject: Use unicode escape instead of raw bytes, for ease of maintenance X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=44d260c577e133410b07f6569dd9ca51e28d7c27;p=evergreen%2Fequinox.git Use unicode escape instead of raw bytes, for ease of maintenance --- diff --git a/Open-ILS/src/sql/Pg/020.schema.functions.sql b/Open-ILS/src/sql/Pg/020.schema.functions.sql index 569344303e..f894076c58 100644 --- a/Open-ILS/src/sql/Pg/020.schema.functions.sql +++ b/Open-ILS/src/sql/Pg/020.schema.functions.sql @@ -357,7 +357,7 @@ BEGIN FOR sf IN SELECT * FROM regexp_split_to_table(acsaf.sf_list,'') LOOP tmp_text := oils_xpath_string('//*[@tag="'||tag_used||'"]/*[@code="'||sf||'"]', marcxml); IF tmp_text IS NOT NULL THEN - heading_text := heading_text || E'‡' || sf || ' ' || tmp_text; + heading_text := heading_text || E'\U2021' || sf || ' ' || tmp_text; END IF; END LOOP; EXIT WHEN heading_text <> '';