summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2009-11-05 19:40:13 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2009-11-05 19:40:13 +0000
commit932e59a9c71137692c46f926f4362da1444756d5 (patch)
tree2552f1b0e060fae541e153d11b172dfeefbdfba8
parent3608702350dba2f38082705486865c769460554f (diff)
downloadMPC-932e59a9c71137692c46f926f4362da1444756d5.tar.gz
ChangeLogTag: Thu Nov 5 19:39:35 UTC 2009 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog8
-rw-r--r--modules/ProjectCreator.pm2
-rw-r--r--modules/XMLProjectBase.pm2
3 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b3c3250..882dff77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Thu Nov 5 19:39:35 UTC 2009 Chad Elliott <elliott_c@ociweb.com>
+
+ * modules/ProjectCreator.pm:
+ * modules/XMLProjectBase.pm:
+
+ Fixed the 'equote' pseudo template variable. It wasn't actually
+ escaped before. Now it is.
+
Mon Nov 2 13:35:00 UTC 2009 Chad Elliott <elliott_c@ociweb.com>
* modules/WorkspaceCreator.pm:
diff --git a/modules/ProjectCreator.pm b/modules/ProjectCreator.pm
index 14a419d3..2333c06b 100644
--- a/modules/ProjectCreator.pm
+++ b/modules/ProjectCreator.pm
@@ -5261,7 +5261,7 @@ sub get_quote_symbol {
sub get_escaped_quote_symbol {
#my $self = shift;
- return '\\"';
+ return '\\\"';
}
sub get_gt_symbol {
diff --git a/modules/XMLProjectBase.pm b/modules/XMLProjectBase.pm
index eb7e59f6..355c7605 100644
--- a/modules/XMLProjectBase.pm
+++ b/modules/XMLProjectBase.pm
@@ -24,7 +24,7 @@ sub get_quote_symbol {
sub get_escaped_quote_symbol {
#my $self = shift;
- return '&quot;';
+ return '\\&quot;';
}