Fixed error 2051
This commit is contained in:
parent
2b4cd682fd
commit
caf518af6b
|
@ -414,7 +414,11 @@ class TeamSpeak3_Viewer_Html implements TeamSpeak3_Viewer_Interface
|
||||||
{
|
{
|
||||||
if(!isset($this->cacheIcon[$this->currObj["virtualserver_icon_id"]]))
|
if(!isset($this->cacheIcon[$this->currObj["virtualserver_icon_id"]]))
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
$download = $this->currObj->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->currObj->iconGetName("virtualserver_icon_id"));
|
$download = $this->currObj->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->currObj->iconGetName("virtualserver_icon_id"));
|
||||||
|
} catch(TeamSpeak3_Exception $e) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if($this->ftclient == "data:image")
|
if($this->ftclient == "data:image")
|
||||||
{
|
{
|
||||||
|
@ -484,7 +488,11 @@ class TeamSpeak3_Viewer_Html implements TeamSpeak3_Viewer_Interface
|
||||||
{
|
{
|
||||||
if(!isset($this->cacheIcon[$this->currObj["channel_icon_id"]]))
|
if(!isset($this->cacheIcon[$this->currObj["channel_icon_id"]]))
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
$download = $this->currObj->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->currObj->iconGetName("channel_icon_id"));
|
$download = $this->currObj->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->currObj->iconGetName("channel_icon_id"));
|
||||||
|
} catch(TeamSpeak3_Exception $e) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if($this->ftclient == "data:image")
|
if($this->ftclient == "data:image")
|
||||||
{
|
{
|
||||||
|
@ -558,7 +566,11 @@ class TeamSpeak3_Viewer_Html implements TeamSpeak3_Viewer_Interface
|
||||||
{
|
{
|
||||||
if(!isset($this->cacheIcon[$group["iconid"]]))
|
if(!isset($this->cacheIcon[$group["iconid"]]))
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
$download = $group->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $group->iconGetName("iconid"));
|
$download = $group->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $group->iconGetName("iconid"));
|
||||||
|
} catch(TeamSpeak3_Exception $e) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if($this->ftclient == "data:image")
|
if($this->ftclient == "data:image")
|
||||||
{
|
{
|
||||||
|
@ -593,7 +605,11 @@ class TeamSpeak3_Viewer_Html implements TeamSpeak3_Viewer_Interface
|
||||||
{
|
{
|
||||||
if(!isset($this->cacheIcon[$this->currObj["client_icon_id"]]))
|
if(!isset($this->cacheIcon[$this->currObj["client_icon_id"]]))
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
$download = $this->currObj->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->currObj->iconGetName("client_icon_id"));
|
$download = $this->currObj->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->currObj->iconGetName("client_icon_id"));
|
||||||
|
} catch(TeamSpeak3_Exception $e) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if($this->ftclient == "data:image")
|
if($this->ftclient == "data:image")
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue