Improved xml scanner for this bug
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / util / PHPColorProvider.java
index 24c25ee..6f05c78 100644 (file)
@@ -29,7 +29,8 @@ public class PHPColorProvider {
   public static final RGB KEYWORD = new RGB(127, 0, 85);
   public static final RGB VARIABLE = new RGB(127, 159, 191);
   public static final RGB FUNCTION_NAME = new RGB(127, 127, 159);
-  public static final RGB STRING = new RGB(42, 0, 255);
+  public static final RGB STRING_DQ = new RGB(42, 0, 255);
+  public static final RGB STRING_SQ = new RGB(42, 0, 255);
   public static final RGB DEFAULT = new RGB(0, 0, 0);
   public static final RGB TYPE = new RGB(127, 0, 85);
   public static final RGB CONSTANT = new RGB(127, 0, 85);