summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-10-06 10:49:22 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-10-06 10:49:22 +0200
commit4bc5fe9843afbd99c79d27faa4d5c1de1aa2eb1b (patch)
tree6db315c71eade74c0c903df9714b201bb72638c5 /inc
parent93a7873eb0646b5712d75b031cd8b8b143968ba2 (diff)
parent1fe8f13dbbf0b227079aadee9d206936fbb96852 (diff)
downloadrpg-4bc5fe9843afbd99c79d27faa4d5c1de1aa2eb1b.tar.gz
rpg-4bc5fe9843afbd99c79d27faa4d5c1de1aa2eb1b.tar.bz2
Merge branch 'master' into future
* master: Always load the parser in the test environment Escape filename in regex in search_index() Changed XHTML validator icon to HTML5 (FS#2619) fixed wrong apple-touch-icon extension (FS#2627) Revert "removed html dependency from media query detection JS in new template" removed html dependency from media query detection JS in new template de-couple mobile JS from widths to actual media query equivalent (fixes FS#2623)
Diffstat (limited to 'inc')
-rw-r--r--inc/search.php2
-rw-r--r--inc/template.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/inc/search.php b/inc/search.php
index a02b86b34..1cecfd5ec 100644
--- a/inc/search.php
+++ b/inc/search.php
@@ -119,7 +119,7 @@ function search_index(&$data,$base,$file,$type,$lvl,$opts){
'listfiles' => !$opts['nofiles'],
'sneakyacl' => $conf['sneaky_index'],
// Hacky, should rather use recmatch
- 'depth' => preg_match('#^'.$file.'(/|$)#','/'.$opts['ns']) ? 0 : -1
+ 'depth' => preg_match('#^'.preg_quote($file, '#').'(/|$)#','/'.$opts['ns']) ? 0 : -1
);
return search_universal($data, $base, $file, $type, $lvl, $opts);
diff --git a/inc/template.php b/inc/template.php
index 2dc58b36d..9f17d5e32 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -1693,7 +1693,7 @@ function tpl_favicon($types = array('favicon')) {
$return .= '<link rel="shortcut icon" href="'.tpl_getMediaFile($look).'" />'.NL;
break;
case 'mobile':
- $look = array(':wiki:apple-touch-icon.png', ':apple-touch-icon.png', 'images/apple-touch-icon.ico');
+ $look = array(':wiki:apple-touch-icon.png', ':apple-touch-icon.png', 'images/apple-touch-icon.png');
$return .= '<link rel="apple-touch-icon" href="'.tpl_getMediaFile($look).'" />'.NL;
break;
case 'generic':