diff options
author | Andreas Gohr <andi@splitbrain.org> | 2010-01-31 17:57:35 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-01-31 17:57:35 +0100 |
commit | 46d41845ed1f3e722a11e31b866023973545fd7c (patch) | |
tree | 159ba1c8656905444ee1b7688eac2873da9c439a | |
parent | 8af66ab927067b9d8f9d71963e266a08967fa9d1 (diff) | |
download | rpg-46d41845ed1f3e722a11e31b866023973545fd7c.tar.gz rpg-46d41845ed1f3e722a11e31b866023973545fd7c.tar.bz2 |
fixed call-time pass-by-reference warning
-rw-r--r-- | inc/subscription.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/subscription.php b/inc/subscription.php index 69e153cf5..f7614014f 100644 --- a/inc/subscription.php +++ b/inc/subscription.php @@ -135,7 +135,7 @@ function subscription_find($page, $pre) { $subscription = trim($subscription) . " every\n"; } if (preg_match(subscription_regex($pre), $subscription, - &$line_matches) === 0) { + $line_matches) === 0) { continue; } $match = array_slice($line_matches, 1); |