projects
/
evergreen
/
masslnc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
40283f3
)
Use unicode escape instead of raw bytes, for ease of maintenance
author
Mike Rylander
<mrylander@gmail.com>
Fri, 6 May 2011 16:58:17 +0000
(12:58 -0400)
committer
Mike Rylander
<mrylander@gmail.com>
Mon, 11 Jul 2011 13:06:16 +0000
(09:06 -0400)
Open-ILS/src/sql/Pg/020.schema.functions.sql
patch
|
blob
|
history
diff --git
a/Open-ILS/src/sql/Pg/020.schema.functions.sql
b/Open-ILS/src/sql/Pg/020.schema.functions.sql
index
262f6cf
..
d1621e6
100644
(file)
--- 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 <> '';