diff options
author | Michael Klier <chi@chimeric.de> | 2007-01-25 00:21:13 +0100 |
---|---|---|
committer | Michael Klier <chi@chimeric.de> | 2007-01-25 00:21:13 +0100 |
commit | b243dd2716602bb66b5e4377c4fd7c1b6e710058 (patch) | |
tree | 15da9a155d0f778c8c234ff90cdb70f8bae5f1cf /lib | |
parent | 04ebd2145bc2b2c00d7912b1ab0fc6b8808c6bf1 (diff) | |
download | rpg-b243dd2716602bb66b5e4377c4fd7c1b6e710058.tar.gz rpg-b243dd2716602bb66b5e4377c4fd7c1b6e710058.tar.bz2 |
added missing with/height attributes to opensearch image tag
darcs-hash:20070124232113-23886-5fdea45dec232c6a94995d83439f1c05beb33c6e.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/exe/opensearch.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/opensearch.php b/lib/exe/opensearch.php index 85087a80c..fe0b8583f 100644 --- a/lib/exe/opensearch.php +++ b/lib/exe/opensearch.php @@ -29,7 +29,7 @@ header('Content-Type: application/opensearchdescription+xml; charset=utf-8'); echo '<?xml version="1.0"?>'.NL; echo '<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">'.NL; echo ' <ShortName>'.htmlspecialchars($conf['title']).'</ShortName>'.NL; -echo ' <Image type="image/x-icon">'.$ico.'</Image>'.NL; +echo ' <Image width="16" height="16" type="image/x-icon">'.$ico.'</Image>'.NL; echo ' <Url type="text/html" template="'.DOKU_URL.DOKU_SCRIPT.'?do=search&id={searchTerms}" />'.NL; echo ' <Url type="application/x-suggestions+json" template="'. DOKU_URL.'lib/exe/ajax.php?call=suggestions&q={searchTerms}" />'.NL; |