Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Under some circumstances the following code may show this warning:
includes.php (line 1077+):
[code:1]function uddeIMdoShowConnections($myself, $my_gid, $config) {
...
$rows = uddeIMselectCBbuddies($myself, $config);
$somanyfriends = count($rows);
[/code:1]
Change this to
[code:1]function uddeIMdoShowConnections($myself, $my_gid, $config) {
...
$somanyfriends = 0;
if (uddeIMcheckCB()) {
$rows = uddeIMselectCBbuddies($myself, $config);
$somanyfriends = count($rows);
}
[/code:1]
Is this working for you?
Please Log in or Create an account to join the conversation.
Under some circumstances the following code may show this warning:
[code:1]function uddeIMdoShowConnections($myself, $my_gid, $config) {
...
$somanyfriends = 0;
if (uddeIMcheckCB()) {
$rows = uddeIMselectCBbuddies($myself, $config);
$somanyfriends = count($rows);
}
[/code:1]
Is this working for you?
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.