pkgsrc-ng/www/drupal6/patches/patch-includes_path.inc
2013-09-26 17:14:40 +02:00

16 lines
464 B
PHP

$NetBSD: patch-includes_path.inc,v 1.1 2012/12/20 12:47:35 taca Exp $
Possible fix to SA4931.
--- includes/path.inc.orig 2012-12-19 18:51:43.000000000 +0000
+++ includes/path.inc
@@ -13,7 +13,7 @@
* Initialize the $_GET['q'] variable to the proper normal path.
*/
function drupal_init_path() {
- if (!empty($_GET['q'])) {
+ if (!empty($_GET['q']) && is_string($_GET['q'])) {
$_GET['q'] = drupal_get_normal_path(trim($_GET['q'], '/'));
}
else {