Adding text to a undeclared variable leads to annoying PHP notices.
simple patch to init the variable before actually adding content to it.
foreach ($query as $key => $value) {
// just a little check
if(!isset($query_string)){
$query_string = '';
}
// go on, chain away now!
$query_string .= $key . '=' . $value . '&';
}
Active
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.