diff options
author | Kasimier T. Buchcik <kbuchcik@src.gnome.org> | 2006-05-11 20:18:27 +0000 |
---|---|---|
committer | Kasimier T. Buchcik <kbuchcik@src.gnome.org> | 2006-05-11 20:18:27 +0000 |
commit | 8f605ccf7c324d38a57cb0bfe85d38de20070b2a (patch) | |
tree | 302df40594bd1545ec7d6cd674320f47e918ee3b | |
parent | 10969bdc905537d3766cb395b41991cbc099e1fe (diff) | |
download | libxslt-8f605ccf7c324d38a57cb0bfe85d38de20070b2a.tar.gz libxslt-8f605ccf7c324d38a57cb0bfe85d38de20070b2a.tar.bz2 libxslt-8f605ccf7c324d38a57cb0bfe85d38de20070b2a.zip |
Changed a comment to indicate that a specific bug was already fixed.
* libxslt/extensions.c: Changed a comment to indicate that a
specific bug was already fixed.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libxslt/extensions.c | 7 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Thu May 11 22:12:22 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net> + + * libxslt/extensions.c: Changed a comment to indicate that a + specific bug was already fixed. + Fri May 5 23:10:47 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net> * libxslt/xsltInternals.h libxslt/attributes.c diff --git a/libxslt/extensions.c b/libxslt/extensions.c index b7dad9bc..0a7bc723 100644 --- a/libxslt/extensions.c +++ b/libxslt/extensions.c @@ -1152,9 +1152,10 @@ xsltCheckExtPrefix(xsltStylesheetPtr style, const xmlChar * URI) cur = (xsltExtDefPtr) style->nsDefs; while (cur != NULL) { /* - * TODO: This is the old behaviour and it won't work - * correctly, since it works with the namespace prefix, - * but it should work with the namespace name. + * NOTE: This was change to work on namespace names rather + * than namespace prefixes. This fixes bug #339583. + * TODO: Consider renaming the field "prefix" of xsltExtDef + * to "href". */ if (xmlStrEqual(URI, cur->prefix)) return (1); |