Skip to content
Snippets Groups Projects
Commit 46d41845 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fixed call-time pass-by-reference warning

parent 8af66ab9
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment