diff options
author | Benjamin Otte <otte@gnome.org> | 2007-07-15 18:24:41 +0100 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2007-07-15 18:24:41 +0100 |
commit | 2ff3834883d610d6797d2354c93577df48eaadd0 (patch) | |
tree | 7f5259af1e796bd557af14699cb8de3c86f8e502 | |
parent | 4366c3a00bb7f60f0af7ed74fe933ff163085020 (diff) |
fix plugin description
stupid iMeem detection script requires an identical string, yay!
-rw-r--r-- | src/plugin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugin.c b/src/plugin.c index 21689ee..d4481d0 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -81,7 +81,8 @@ NP_GetValue (void* reserved, NPPVariable var, void* out) *val = "Shockwave Flash"; break; case NPPVpluginDescriptionString: - *val = "Shockwave Flash 9.0 (<A HREF=\"http://swfdec.freedesktop.org\">Swfdec</A> " VERSION ")"; + /* FIXME: find a way to encode the Swfdec version without breaking stupid JS scripts */ + *val = "Shockwave Flash 9.0 r100"; break; case NPPVpluginNeedsXEmbed: *((PRBool*) val) = PR_TRUE; |