Fix HTML attributes markup

This commit is contained in:
Fedor A. Fetisov 2013-09-06 15:33:36 +04:00
parent 621f5951c4
commit 0f86f558ec
59 changed files with 230 additions and 230 deletions

View File

@ -234,8 +234,8 @@ function check_sound()
$page['soundcheck'] = true;
$page['done'][] = getlocal2("install.5.text", array(
"<a id='check-nv' href='javascript:void(0)'>" . getlocal("install.5.newvisitor") . "</a>",
"<a id='check-nm' href='javascript:void(0)'>" . getlocal("install.5.newmessage") . "</a>"
"<a id=\"check-nv\" href=\"javascript:void(0)\">" . getlocal("install.5.newvisitor") . "</a>",
"<a id=\"check-nm\" href=\"javascript:void(0)\">" . getlocal("install.5.newmessage") . "</a>"
));
}

View File

@ -5,7 +5,7 @@
Copyright (c) 2005-2013 Mibew Messenger Community
License: http://mibew.org/license.php
*/
var FrameUtils={getDocument:function(a){return a.contentDocument?a.contentDocument:a.contentWindow?a.contentWindow.document:a.document?a.document:null},initFrame:function(a){var b=this.getDocument(a);b.open();b.write("<html><head>");b.write('<link rel="stylesheet" type="text/css" media="all" href="'+Chat.cssfile+'">');b.write("</head><body bgcolor='#FFFFFF' text='#000000' link='#C28400' vlink='#C28400' alink='#C28400'>");b.write("<table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td valign='top' class='message' id='content'></td></tr></table><a id='bottom' name='bottom'></a>");
var FrameUtils={getDocument:function(a){return a.contentDocument?a.contentDocument:a.contentWindow?a.contentWindow.document:a.document?a.document:null},initFrame:function(a){var b=this.getDocument(a);b.open();b.write("<html><head>");b.write('<link rel="stylesheet" type="text/css" media="all" href="'+Chat.cssfile+'">');b.write('</head><body bgcolor="#FFFFFF" text=#000000" link="#C28400" vlink="#C28400" alink="#C28400">');b.write('<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td valign="top" class="message" id="content"></td></tr></table><a id="bottom" name="bottom"></a>');
b.write("</body></html>");b.close();a.onload=function(){a.myHtml&&(FrameUtils.getDocument(a).getElementById("content").innerHTML+=a.myHtml,FrameUtils.scrollDown(a))}},insertIntoFrame:function(a,b){var c=this.getDocument(a).getElementById("content");null==c?(a.myHtml||(a.myHtml=""),a.myHtml+=b):c.innerHTML+=b},scrollDown:function(a){var b=this.getDocument(a).getElementById("bottom");if("opera"==myAgent)try{a.contentWindow.scrollTo(0,this.getDocument(a).getElementById("content").clientHeight)}catch(c){}b&&
b.scrollIntoView(!1)}};Ajax.ChatThreadUpdater=Class.create();
Class.inherit(Ajax.ChatThreadUpdater,Ajax.Base,{initialize:function(a){this.setOptions(a);this._options.onComplete=this.requestComplete.bind(this);this._options.onException=this.handleException.bind(this);this._options.onTimeout=this.handleTimeout.bind(this);this._options.timeout=5E3;this.updater={};this.frequency=this._options.frequency||2;this.lastupdate=0;this.focused=this.skipNextsound=this.cansend=!0;this.ownThread=null!=this._options.message;FrameUtils.initFrame(this._options.container);this._options.message&&

View File

@ -24,8 +24,8 @@ var FrameUtils = {
doc.open();
doc.write("<html><head>");
doc.write("<link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\""+Chat.cssfile+"\">");
doc.write("</head><body bgcolor='#FFFFFF' text='#000000' link='#C28400' vlink='#C28400' alink='#C28400'>");
doc.write("<table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td valign='top' class='message' id='content'></td></tr></table><a id='bottom' name='bottom'></a>");
doc.write("</head><body bgcolor=\"#FFFFFF\" text=#000000\" link=\"#C28400\" vlink=\"#C28400\" alink=\"#C28400\">");
doc.write("<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tr><td valign=\"top\" class=\"message\" id=\"content\"></td></tr></table><a id=\"bottom\" name=\"bottom\"></a>");
doc.write("</body></html>");
doc.close();
frm.onload = function() {
@ -85,7 +85,7 @@ Class.inherit( Ajax.ChatThreadUpdater, Ajax.Base, {
},
handleException: function(_request, ex) {
this.setStatus("offline, reconnecting");
this.setStatus("offline, reconnecting");
this.stopUpdate();
this.timer = setTimeout(this.update.bind(this), 1000);
},
@ -99,11 +99,11 @@ Class.inherit( Ajax.ChatThreadUpdater, Ajax.Base, {
updateOptions: function(act) {
this._options.parameters = 'act='+act+'&thread=' + (this._options.threadid || 0) +
'&token=' + (this._options.token || 0)+
'&lastid=' + (this._options.lastid || 0);
'&lastid=' + (this._options.lastid || 0);
if( this._options.user )
this._options.parameters += "&user=true";
this._options.parameters += "&user=true";
if( act == 'refresh' && this._options.message && this._options.message.value != '' )
this._options.parameters += "&typed=1";
this._options.parameters += "&typed=1";
},
enableInput: function(val) {
@ -113,7 +113,7 @@ Class.inherit( Ajax.ChatThreadUpdater, Ajax.Base, {
stopUpdate: function() {
this.enableInput(true);
if( this.updater._options )
if( this.updater._options )
this.updater._options.onComplete = undefined;
clearTimeout(this.timer);
},
@ -126,13 +126,13 @@ Class.inherit( Ajax.ChatThreadUpdater, Ajax.Base, {
requestComplete: function(_response) {
try {
this.enableInput(true);
this.cansend = true;
var xmlRoot = Ajax.getXml(_response);
this.cansend = true;
var xmlRoot = Ajax.getXml(_response);
if( xmlRoot && xmlRoot.tagName == 'thread' ) {
this.updateContent( xmlRoot );
} else {
this.handleError(_response, xmlRoot, 'refresh messages failed');
}
} else {
this.handleError(_response, xmlRoot, 'refresh messages failed');
}
} catch (e) {
}
this.skipNextsound = false;
@ -150,21 +150,21 @@ Class.inherit( Ajax.ChatThreadUpdater, Ajax.Base, {
var postOptions = {}.extend(this._options);
postOptions.parameters += "&message=" + encodeURIComponent(msg);
postOptions.onComplete = (function(presponse) {
this.requestComplete( presponse );
if( this._options.message ) {
this._options.message.value = '';
this._options.message.focus();
}
this.requestComplete( presponse );
if( this._options.message ) {
this._options.message.value = '';
this._options.message.focus();
}
}).bind(this);
if( myRealAgent != 'opera' )
this.enableInput(false);
this.enableInput(false);
this.updater = new Ajax.Request(this._options.servl, postOptions);
},
changeName: function(newname) {
this.skipNextsound = true;
new Ajax.Request(this._options.servl, {parameters:'act=rename&thread=' + (this._options.threadid || 0) +
'&token=' + (this._options.token || 0) + '&name=' + encodeURIComponent(newname)});
'&token=' + (this._options.token || 0) + '&name=' + encodeURIComponent(newname)});
},
onThreadClosed: function(_response) {
@ -179,7 +179,7 @@ Class.inherit( Ajax.ChatThreadUpdater, Ajax.Base, {
closeThread: function() {
var _params = 'act=close&thread=' + (this._options.threadid || 0) + '&token=' + (this._options.token || 0);
if( this._options.user )
_params += "&user=true";
_params += "&user=true";
new Ajax.Request(this._options.servl, {parameters:_params, onComplete: this.onThreadClosed.bind(this)});
},
@ -189,9 +189,9 @@ Class.inherit( Ajax.ChatThreadUpdater, Ajax.Base, {
},
showTyping: function(istyping) {
if( $("typingdiv") ) {
if( $("typingdiv") ) {
$("typingdiv").style.display=istyping ? 'inline' : 'none';
}
}
},
setupAvatar: function(avatar) {
@ -207,7 +207,7 @@ Class.inherit( Ajax.ChatThreadUpdater, Ajax.Base, {
updateContent: function(xmlRoot) {
var haveMessage = false;
var result_div = this._options.container;
var result_div = this._options.container;
var _lastid = NodeUtils.getAttrValue(xmlRoot, "lastid");
if( _lastid ) {
this._options.lastid = _lastid;
@ -265,7 +265,7 @@ Class.inherit( Ajax.ChatThreadUpdater, Ajax.Base, {
isSendkey: function(ctrlpressed, key) {
return ((key==13 && (ctrlpressed || this._options.ignorectrl)) || (key==10));
},
handleKeyDown: function(k) {
if( k ){ ctrl=k.ctrlKey;k=k.which; } else { k=event.keyCode;ctrl=event.ctrlKey; }
if( this._options.message && this.isSendkey(ctrl, k) ) {

View File

@ -95,8 +95,8 @@ function message_to_html($msg)
$message = "<span>" . date("H:i:s", $msg['created']) . "</span> ";
$kind = $kind_to_string{$msg['ikind']};
if ($msg['tname'])
$message .= "<span class='n$kind'>" . htmlspecialchars($msg['tname']) . "</span>: ";
$message .= "<span class='m$kind'>" . prepare_html_message($msg['tmessage']) . "</span><br/>";
$message .= "<span class=\"n$kind\">" . htmlspecialchars($msg['tname']) . "</span>: ";
$message .= "<span class=\"m$kind\">" . prepare_html_message($msg['tmessage']) . "</span><br/>";
return $message;
}
@ -186,15 +186,15 @@ function print_thread_messages($thread, $token, $lastid, $isuser, $format, $agen
"<meta http-equiv=\"Pragma\" content=\"no-cache\">\n" .
"<title>chat</title>\n" .
"</head>\n" .
"<body bgcolor='#FFFFFF' text='#000000' link='#C28400' vlink='#C28400' alink='#C28400' onload=\"if( location.hash != '#aend' ){location.hash='#aend';}\">" .
"<table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td valign='top' class='message'>");
"<body bgcolor=\"#FFFFFF\" text=\"#000000\" link=\"#C28400\" vlink=\"#C28400\" alink=\"#C28400\" onload=\"if( location.hash != '#aend' ){location.hash='#aend';}\">" .
"<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tr><td valign=\"top\" class=\"message\">");
foreach ($output as $msg) {
print $msg;
}
print(
"</td></tr></table><a name='aend'></a>" .
"</td></tr></table><a name=\"aend\"></a>" .
"</body></html>");
}
}

View File

@ -715,7 +715,7 @@ function print_csrf_token_input()
{
setcsrftoken();
echo "<input name='csrf_token' type='hidden' value='" . $_SESSION['csrf_token'] . "' />\n";
echo "<input name=\"csrf_token\" type=\"hidden\" value=\"" . $_SESSION['csrf_token'] . "\" />\n";
}
/* print csrf token in url format */

View File

@ -46,8 +46,8 @@ function demo_process_thread($act, $outformat, $lastid, $isuser, $canpost, $isty
"<meta http-equiv=\"Pragma\" content=\"no-cache\">\n" .
"<title>chat</title>\n" .
"</head>\n" .
"<body bgcolor='#FFFFFF' text='#000000' link='#C28400' vlink='#C28400' alink='#C28400'>" .
"<table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td valign='top' class='message'>");
"<body bgcolor=\"#FFFFFF\" text=\"#000000\" link=\"#C28400\" vlink=\"#C28400\" alink=\"#C28400\">" .
"<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tr><td valign=\"top\" class=\"message\">");
}
if ($lastid == 1) {
@ -81,7 +81,7 @@ function demo_process_thread($act, $outformat, $lastid, $isuser, $canpost, $isty
print("</thread>");
} else {
print(
"</td></tr></table><a name='aend'></a>" .
"</td></tr></table><a name=\"aend\"></a>" .
"</body></html>");
}
}

View File

@ -105,7 +105,7 @@ function generate_pagination($pagination, $bottom = true)
} else {
$result .= "<br/>";
}
$result .= "<div class='pagination'>";
$result .= "<div class=\"pagination\">";
$curr_page = $pagination['page'];
$minPage = max($curr_page - $links_on_page, 1);

View File

@ -99,7 +99,7 @@ clients.queue.chat=محادثة زائر
clients.queue.prio=طابر أفضلية الزوار
clients.queue.wait=ينتظر مقدم اخدمة من بداية الوقت
clients.title=قائمة الزوار المنتظرين
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - حقل إلزامي
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - حقل إلزامي
company.title=Mibew Messenger مجموعة
confirm.take.head=تغيير مقدم الخدمة
confirm.take.message=الزائر <span style="color:blue;">{0}</span> يتحادث مع مقدم الخدمة<span style="color:green;">{1}</span>.<br/>هل ترغب في بدأ المحادثة مع الزائر؟

View File

@ -99,7 +99,7 @@ clients.queue.chat=
clients.queue.prio=Ïðûÿðûòýòíàÿ ÷àðãà íàâåäâàëüí³êà¢
clients.queue.wait=×àêàþöü àïåðàòàðà ¢ ïåðøû ðàç
clients.title=Ñï³ñ íàâåäâàëüí³êà¢, ÿê³ÿ ÷àêàþöü
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - ïàë³, àáàâÿçêîâûÿ äëÿ çàïà¢íåííÿ
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - ïàë³, àáàâÿçêîâûÿ äëÿ çàïà¢íåííÿ
company.title=Mibew Messenger Community
confirm.take.head=Çìÿí³öü àïåðàòàðà
confirm.take.message=Ç íàâåäâàëüí³êàì <span style="color:blue;">{0}</span> óæî ãóòàðûöü <span style="color:green;">{1}</span>.<br/>Âû ¢ïý¢íåíû øòî æàäàåöå çìÿí³öü ÿãî?

View File

@ -99,7 +99,7 @@ clients.queue.chat=
clients.queue.prio=Ïðåâèëèãåðîâàíè î÷àêâàùè ïîñåòèòåëè
clients.queue.wait=Î÷àêâàùè îïåðàòîð çà ïúðâè ïúò
clients.title=Ñïèñúê ñ î÷àêâàùè ïîñåòèòåëè
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - çàäúëæèòåëíè ïîëåòà
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - çàäúëæèòåëíè ïîëåòà
company.title=Mibew Messenger Community
confirm.take.head=Ñìÿíà íà îïåðàòîð
confirm.take.message=Ñ ïîñåòèòåëÿò <span style="color:blue;">{0}</span> âå÷å ãîâîðè <span style="color:green;">{1}</span>.<br/>Âèå ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî ñìåíèòå?

View File

@ -95,7 +95,7 @@ clients.queue.chat=Visitant dialogant
clients.queue.prio=Visitant amb prioritat per a atenció
clients.queue.wait=Esperant operador per primera vegada
clients.title=Llista de visitants en espera
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - camps obligatoris
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - camps obligatoris
company.title=Mibew Messenger Comunitat
confirm.take.head=Canviar operador
confirm.take.message=Visitant <span style="color:blue;">{0}</span> és actualment servit per <span style="color:green;">{1}</span>.<br/>Està vostè segur que vol iniciar conversa amb els visitants?

View File

@ -70,7 +70,7 @@ chat.window.title.user=Mibew Messenger
chat.window.toolbar.mail_history=Odeslat záznam chatu e-mailem
chat.window.toolbar.redirect_user=Přesměrovat návštěvníka na jiného operátora
chat.window.toolbar.refresh=Aktualizovat
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - povinné položky
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - povinné položky
company.title=Mibew Messenger Community
confirm.take.head=Změna operátora
confirm.take.message=Návštěvníkovi <span style="color:blue;">{0}</span> se již věnuje <span style="color:green;">{1}</span>.<br/> Jste si jisti, že chcete zahájit chat s návštěvníkem?

View File

@ -97,7 +97,7 @@ clients.no_clients=Der er ingen i kø
clients.queue.prio=Prioritér kø
clients.queue.wait=Venter på en supporter for første gang
clients.title=Liste over besøgende der venter
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - påkrævede felter
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - påkrævede felter
company.title=Mibew Messenger Community
confirm.take.head=Vælg ny supporter
confirm.take.message=Besøgende <span style="color:blue;">{0}</span> bliver allerede hjulpet af <span style="color:green;">{1}</span>.<br/> Er du sikker på, at du vil igangsætte endnu en chat session?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Επισκέπτες σε συνομιλίες
clients.queue.prio=Επισκέπτες στην ουρά προτεραιότητας
clients.queue.wait=Αναμονή για το χειριστή για πρώτη φορά
clients.title=Κατάλογος των εν αναμονή επισκεπτών
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - υποχρεωτικά πεδία
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - υποχρεωτικά πεδία
company.title=Κοινότητα Συνομιλητή Mibew
confirm.take.head=Αλλαγή χειριστή
confirm.take.message=Ο Επισκέπτης <span style="color:blue;">{0}</span> βοηθιέται ήδη από τον <span style="color:green;">{1}</span>.<br/> Είστε πραγματικά σίγουροι ότι θέλετε να αρχίσετε να μιλάτε με τον επισκέπτη?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Visitors in dialogs
clients.queue.prio=Priority visitors' queue
clients.queue.wait=Waiting an operator for the first time
clients.title=List of visitors waiting
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - mandatory fields
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - mandatory fields
company.title=Mibew Messenger Community
confirm.take.head=Change operator
confirm.take.message=Visitor <span style="color:blue;">{0}</span> is already being assisted by <span style="color:green;">{1}</span>.<br/> Are you really sure you want to start chatting the visitor?

View File

@ -91,7 +91,7 @@ clients.queue.chat=אורחים בשיחות
clients.queue.prio=רשימת אורחים מועדפים
clients.queue.wait=ממתינים לראשונה לנציג
clients.title=רשימת אורחים ממתינים
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - שדות חושה למילוי
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - שדות חושה למילוי
company.title=Mibew Messenger Community
confirm.take.head=להחליף נציג
confirm.take.message=Visitor <span style="color:blue;">{0}</span> נמצא כבר בשיחה <span style="color:green;">{1}</span>.<br/> האם אתה בטוח שברצונך, להחליף את הנציג?

View File

@ -91,7 +91,7 @@ clients.queue.chat=Posjetitelji u razgovorima
clients.queue.prio=Prioritetni red čekanja posjetitelja
clients.queue.wait=Čekanje na operatora po prvi put
clients.title=Lista posjetitelja koji čekaju
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - obavezna polja
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - obavezna polja
company.title=Mibew Messenger Community
confirm.take.head=Promijeni operatora
confirm.take.message=Posjetitelju <span style="color:blue;">{0}</span> već pomaže <span style="color:green;">{1}</span>.<br/> Jeste li sigurni da želite započeti razgovor sa posjetiteljem?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Ügyfelek beszélgetésben
clients.queue.prio=Elsőbbségben lévő ügyfelek listája
clients.queue.wait=Először várakoznak operátorra
clients.title=Várakozó ügyfelek listája
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - kötelező mező
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - kötelező mező
company.title=Mibew Messenger Community
confirm.take.head=Operátor váltása
confirm.take.message=Az ügyfélnek<span style="color:blue;">{0}</span>már segít <span style="color:green;">{1}</span>.<br/> Biztos vagy benne, hogy beszélni akarsz az ügyféllel?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Pengunjung dalam dialog
clients.queue.prio=Prioritas antrian pengunjung
clients.queue.wait=Menunggu operator untuk pertama kalinya
clients.title=Daftar menunggu pengunjung
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - wajib diisi
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - wajib diisi
company.title=Mibew Messenger Community
confirm.take.head=Ubah operator
confirm.take.message=Pengunjung <span style="color:blue;">{0}</span> telah dibantu oleh <span style="color:green;">{1}</span>.<br/> Apakah Anda benar-benar yakin ingin memulai chatting pengunjung?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Visitatori in chat
clients.queue.prio=Coda visitatori per priorità
clients.queue.wait=In attesa di operatore per la prima volta
clients.title=Lista dei visitatori in attesa
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - campi obbligatori
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - campi obbligatori
company.title=Mibew Messenger Community
confirm.take.head=Cambia operatore
confirm.take.message=Il visitatore <span style="color:blue;">{0}</span> è già assistito da <span style="color:green;">{1}</span>.<br/> Sei sicuro di voler iniziare una chat con lui/lei?

View File

@ -101,7 +101,7 @@ clients.queue.chat=სტუმრები დიალოგებში
clients.queue.prio=პრიორიტეტული სტუმართა რიგი
clients.queue.wait=ველოდები ოპერატორს პირველად
clients.title=მოლოდინში მყოფი სტუმრების სია
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> -სავალდებულო ველები
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> -სავალდებულო ველები
company.title=Mibew Messenger Community
confirm.take.head=ოპერატორის შეცვლა
confirm.take.message=Visitor <span style="color:blue;">{0}</span> already assisted by <span style="color:green;">{1}</span>.<br/>დარწმუნებული ხართ რომ გსურთ სტუმართან დიალოგის დაწყება?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Bezoekers in gesprek
clients.queue.prio=Voorrang wachtrij
clients.queue.wait=Voor het eerst wachtend op een medewerker
clients.title=Lijst van wachtende bezoekers
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - verplichte velden
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - verplichte velden
company.title=Mibew Messenger Community
confirm.take.head=Wissel van medewerker
confirm.take.message=Bezoeker <span style="color:blue;">{0}</span> wordt al geholpen door <span style="color:green;">{1}</span>.<br/> Weet u zeker dat u met deze bezoeker wilt gaan chatten?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Użytkownicy w trakcie rozmowy
clients.queue.prio=Kolejka oczekujących użytkowników
clients.queue.wait=Osoby oczekujące po raz pierwszy na rozmowę
clients.title=Lista oczekujących użytkowników
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - pola wymagane
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - pola wymagane
company.title=Społecznośc Mibew Komunikatora
confirm.take.head=Zmień Operatora
confirm.take.message=Użytkownik <span style="color:blue;">{0}</span> jest już obsługiwany przez <span style="color:green;">{1}</span>.<br/> Na pewno chcesz rozpocząć rozmowę z tym użytkownikiem?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Visitantes no chat
clients.queue.prio=Fila de prioridade para visitantes
clients.queue.wait=Esperando um operador
clients.title=Lista de visitantes em espera
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - Campos obrigatórios
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - Campos obrigatórios
company.title=Mibew Messenger Community
confirm.take.head=Mudar o operador
confirm.take.message=O visitante <span style="color:blue;">{0}</span> já está sendo atendido <span style="color:green;">{1}</span>.<br/> Você tem certeza que quer entrar no chat?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Visitantes em chat
clients.queue.prio=Fila de prioridade de visitantes
clients.queue.wait=Aguarde por um operador
clients.title=Lista de visitantes em espera
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - campos obrigatórios
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - campos obrigatórios
company.title=Comunidade Mibew Messenger
confirm.take.head=Mudar de operador
confirm.take.message=O visitante <span style="color:blue;">{0}</span> já está atendido <span style="color:green;">{1}</span>.<br/> Tem certeza que quer entrar no chat?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Vizitatori in convorbire
clients.queue.prio=Rindul vizitatoriloe de prioritate
clients.queue.wait=Asteptam operatorul pentru prima data
clients.title=Lista vizitatorilor in asteptare
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - domenii obligatorii
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - domenii obligatorii
company.title=Mibew Messenger Community
confirm.take.head=Schimbati operatorul
confirm.take.message=Vizitatorul <span style="color:blue;">{0}</span> deja este asistat de <span style="color:green;">{1}</span>.<br/>. Sunteti sigur ca vreti sa incepeti chat cu vizitatorul?

View File

@ -99,7 +99,7 @@ clients.queue.chat=
clients.queue.prio=Ïðèîðèòåòíàÿ î÷åðåäü ïîñåòèòåëåé
clients.queue.wait=Îæèäàþùèå îïåðàòîðà â ïåðâûé ðàç
clients.title=Ñïèñîê îæèäàþùèõ ïîñåòèòåëåé
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - ïîëÿ, îáÿçàòåëüíûå äëÿ çàïîëíåíèÿ
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - ïîëÿ, îáÿçàòåëüíûå äëÿ çàïîëíåíèÿ
company.title=Mibew Messenger Community
confirm.take.head=Ñìåíèòü îïåðàòîðà
confirm.take.message=Ñ ïîñåòèòåëåì <span style="color:blue;">{0}</span> óæå îáùàåòñÿ <span style="color:green;">{1}</span>.<br/>Âû óâåðåíû ÷òî õîòèòå ñìåíèòü åãî?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Visitante dialogando
clients.queue.prio=Visitante con prioridad para atención
clients.queue.wait=Esperando a operador por primera vez
clients.title=Lista de visitantes en espera
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - campos obligatorios
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - campos obligatorios
company.title=Comunidad Mibew Messenger
confirm.take.head=Cambiar operador
confirm.take.message=Visitante <span style="color:blue;">{0}</span> es actualmente servido por<span style="color:green;">{1}</span>.<br/> Esta usted seguro que quiere iniciar conversación con los visitantes?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Besökare som pratar med operatör
clients.queue.prio=Besökarkö
clients.queue.wait=Väntar på operatör för första gången
clients.title=Lista över väntande besökare
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - Obligatoriska fält
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - Obligatoriska fält
company.title=Mibew Messenger Community
confirm.take.head=Byt operatör
confirm.take.message=Besökare <span style="color:blue;">{0}</span> får redan hjälp av <span style="color:green;">{1}</span>.<br/> Är du säker på att du vill börja chatta med besökaren?

View File

@ -99,7 +99,7 @@ clients.queue.chat=ผู้เยี่ยมชมในการสนทน
clients.queue.prio=ลำดับคิวของผู้เยี่ยมชมท่านต่างๆ
clients.queue.wait=กำลังรอโอเปอร์เรเตอร์เพื่อเริ่มการใช้งาน
clients.title=รายชื่อผู้เยี่ยมชมที่กำลังรอ
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - กรุณาระบุ
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - กรุณาระบุ
company.title=ชุมชนของMibew Messenger
confirm.take.head=เปลี่ยนโอเปอร์เรเตอร์
confirm.take.message=ผู้เยี่ยมชม <span style="color:blue;">{0}</span> ได้รับการช่วยเหลือจาก <span style="color:green;">{1}</span>.<br/> คุณต้องการที่จะเริ่มต้นการสนทนากับผู้เยี่ยมชมรายนี้หรือไม่?

View File

@ -99,7 +99,7 @@ clients.queue.chat=Görüşmedeki ziyaretçiler
clients.queue.prio=Öncelikli ziyaretçiler sırası
clients.queue.wait=Operatör için ilk defa bekliyor
clients.title=Bekleyen ziyaretçiler listesi
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - zorunlu sahalar
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - zorunlu sahalar
company.title=Mibew Messenger Community
confirm.take.head=Operatör değiştir
confirm.take.message=Ziyaretçi <span style="color:blue;">{0}</span> zaten <span style="color:green;">{1}</span> ile görüşüyor.<br/> Bu ziyaretçi ile görüşme yapmak istediğinize emin misiniz?

View File

@ -91,7 +91,7 @@ clients.queue.chat=³
clients.queue.prio=Ïð³îðèòåòíà ÷åðãà â³äâ³äóâà÷³â
clients.queue.wait=³äâ³äóâà÷³, ùî î÷³êóþòü â³äïîâ³äü óïåðøå
clients.title=Ñïèñîê â³äâ³äóâà÷³â, ùî î÷³êóþòü â³äïîâ³ä³
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - ïîëÿ, îáîâ'ÿçêîâ³ äëÿ çàïîâíåííÿ
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - ïîëÿ, îáîâ'ÿçêîâ³ äëÿ çàïîâíåííÿ
company.title=Mibew Messenger Community
confirm.take.head=Çì³íèòè îïåðàòîðà
confirm.take.message=Ç â³äâ³äóâà÷åì <span style="color:blue;">{0}</span> âæå ñï³ëêóºòñüÿ <span style="color:green;">{1}</span>.<br/>Âè âïåâíåí³, ùî õî÷åòå çàì³íèòè éîãî?

View File

@ -137,16 +137,16 @@ ${if:user}
<div id="changename1" style="display:${page:displ1};">
<table cellspacing="0" cellpadding="0" border="0"><tr>
<td class="text" nowrap>${msg:chat.client.name}</td>
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="username"></td>
<td width="5" valign="top"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
<td width="5" valign="top"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage iexec" src="${webimroot}/images/free.gif" border="0" alt="&gt;&gt;" /></a></td>
</tr></table>
</div>
<div id="changename2" style="display:${page:displ2};">
<table cellspacing="0" cellpadding="0" border="0"><tr>
<td class="text" nowrap><a id="unamelink" href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}">${page:ct.user.name}</a></td>
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage ichangeuser" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
</tr></table>
</div>
@ -158,7 +158,7 @@ ${if:user}
${endif:canChangeName}
${endif:user}
${if:agent}
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}">
<img class="tplimage iclose" src="${webimroot}/images/free.gif" border="0" alt="${msg:chat.window.close_title}"/></a></td>
${endif:agent}
@ -185,7 +185,7 @@ ${if:sslLink}
<td><a href="${page:sslLink}&amp;style=${styleid}" title="SSL" >
<img class="tplimage issl" src="${webimroot}/images/free.gif" border="0" alt="SSL&nbsp;"/></a></td>
${endif:sslLink}
<td width="20" valign="top"><img src='${webimroot}/images/free.gif' width="20" height="1" border="0" alt="" /></td>
<td width="20" valign="top"><img src="${webimroot}/images/free.gif" width="20" height="1" border="0" alt="" /></td>
</tr>
</table>
</td>
@ -223,19 +223,19 @@ ${endif:sslLink}
<td colspan="2" width="100%" height="100%" valign="top" id="chatwndtd">
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="100%" height="100%" bgcolor="#FFFFFF" valign="top">
<iframe id="chatwnd" width="100%" height="100%" src="${if:neediframesrc}${webimroot}/images/blank.html${endif:neediframesrc}" frameborder="0" style="overflow:auto;">
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
</iframe>
</td>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
</table>
</td>
@ -304,9 +304,9 @@ ${endif:canpost}
</tr>
<tr>
<td width="10"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="585" height="1" border="0" alt="" /></td>
<td width="5"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
<td width="10"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="585" height="1" border="0" alt="" /></td>
<td width="5"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -52,7 +52,7 @@
</table>
</td>
<td width="5"></td>
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}"><img src='${tplroot}/images/buttons/closewin.gif' width="15" height="15" border="0" alt="${msg:chat.window.close_title}"/></a></td>
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}"><img src="${tplroot}/images/buttons/closewin.gif" width="15" height="15" border="0" alt="${msg:chat.window.close_title}"/></a></td>
<td width="5"></td>
</tr>
</table>
@ -67,17 +67,17 @@
<tr>
<td class="text" nowrap>${msg:chat.client.name}</td>
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="username"></td>
<td width="5" valign="top"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img src='${tplroot}/images/buttons/exec.gif' width="25" height="25" border="0" alt="&gt;&gt;" /></a></td>
<td width="5" valign="top"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img src="${tplroot}/images/buttons/exec.gif" width="25" height="25" border="0" alt="&gt;&gt;" /></a></td>
<td><img src='${tplroot}/images/buttondiv.gif' width="35" height="45" border="0" alt="" /></td>
<td><img src="${tplroot}/images/buttondiv.gif" width="35" height="45" border="0" alt="" /></td>
<td><a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onclick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0'); if (this.newWindow != null) {this.newWindow.focus();this.newWindow.opener=window;}return false;"><img src='${tplroot}/images/buttons/email.gif' width="25" height="25" border="0" alt="Mail" /></a></td>
<td><a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onclick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0'); if (this.newWindow != null) {this.newWindow.focus();this.newWindow.opener=window;}return false;"><img src="${tplroot}/images/buttons/email.gif" width="25" height="25" border="0" alt="Mail" /></a></td>
<td><a id="refresh" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.toolbar.refresh}">
<img src='${tplroot}/images/buttons/refresh.gif' width="25" height="25" border="0" alt="Refresh" /></a></td>
<img src="${tplroot}/images/buttons/refresh.gif" width="25" height="25" border="0" alt="Refresh" /></a></td>
@ -100,23 +100,23 @@
<table width="585" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="20" valign="top"><img src='${webimroot}${url:image.chat.history}' width="20" height="80" border="0" alt="History" /></td>
<td width="20" valign="top"><img src="${webimroot}${url:image.chat.history}" width="20" height="80" border="0" alt="History" /></td>
<td width="565" valign="top" id="chatwndtd">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="100%" bgcolor="#FFFFFF" valign="top">
<iframe name="chatwndiframe" width="100%" height="175" src="${webimroot}/thread.php?act=refresh&amp;thread=${page:ct.chatThreadId}&amp;token=${page:ct.token}&amp;html=on&amp;user=true" frameborder="0" style="overflow:auto;">
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
</iframe>
</td>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
</table>
</td>
@ -127,14 +127,14 @@
</tr>
<tr>
<td width="20" valign="top"><img src='${webimroot}${url:image.chat.message}' width="20" height="85" border="0" alt="Message" /></td>
<td width="20" valign="top"><img src="${webimroot}${url:image.chat.message}" width="20" height="85" border="0" alt="Message" /></td>
<td width="565" valign="top">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="565" height="85" bgcolor="#FFFFFF" valign="top">
<form id="messageform" method="post" action="${webimroot}/thread.php" target="chatwndiframe">
<input type="hidden" name="act" value="post"/><input type="hidden" name="html" value="on"/><input type="hidden" name="thread" value="${page:ct.chatThreadId}"/><input type="hidden" name="token" value="${page:ct.token}"/><input type="hidden" name="user" value="true"/>
@ -142,10 +142,10 @@
<textarea id="messagetext" cols="50" rows="4" class="message" style="width:550px;" tabindex="0"></textarea>
</form>
</td>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
</table>
</td>
@ -174,12 +174,12 @@
<table cellspacing="0" cellpadding="0" border="0" id="postmessage">
<tr>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src='${webimroot}/images/submit.gif' width="40" height="35" border="0" alt=""/></a></td>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src="${webimroot}/images/submit.gif" width="40" height="35" border="0" alt=""/></a></td>
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
<a id="msgsend1" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}">${msg:chat.window.send_message_short,send_shortcut}</a><br/>
</td>
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src='${webimroot}/images/submitrest.gif' width="10" height="35" border="0" alt=""/></a></td>
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src="${webimroot}/images/submitrest.gif" width="10" height="35" border="0" alt=""/></a></td>
</tr>
</table>
</td>
@ -190,9 +190,9 @@
</tr>
<tr>
<td width="10"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="585"><img src='${webimroot}/images/free.gif' width="585" height="1" border="0" alt="" /></td>
<td width="5"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
<td width="10"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td width="585"><img src="${webimroot}/images/free.gif" width="585" height="1" border="0" alt="" /></td>
<td width="5"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -53,7 +53,7 @@
<td align="right" style="padding-right:17px;padding-left:17px;">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="javascript:window.close();" title="${msg:chat.error_page.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
<td><a href="javascript:window.close();" title="${msg:chat.error_page.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
<td width="5"></td>
<td class="button"><a href="javascript:window.close();" title="${msg:chat.error_page.close}">${msg:chat.error_page.close}</a></td>
</tr>

View File

@ -81,7 +81,7 @@ ${if:formgroupid}<input type="hidden" name="group" value="${form:groupid}"/>${en
<td align="right" style="padding-right:17px;">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="javascript:window.close();" title="${msg:leavemessage.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
<td><a href="javascript:window.close();" title="${msg:leavemessage.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
<td width="5"></td>
<td class="button"><a href="javascript:window.close();" title="${msg:leavemessage.close}">${msg:leavemessage.close}</a></td>
</tr>
@ -96,7 +96,7 @@ ${if:formgroupid}<input type="hidden" name="group" value="${form:groupid}"/>${en
${if:errors}
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top"><img src='${webimroot}/images/icon_err.gif' width="40" height="40" border="0" alt="" /></td>
<td valign="top"><img src="${webimroot}/images/icon_err.gif" width="40" height="40" border="0" alt="" /></td>
<td width="10"></td>
<td class="text">
${errors}

View File

@ -53,7 +53,7 @@
<td align="right" style="padding-right:17px;">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
<td><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
<td width="5"></td>
<td class="button"><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}">${msg:chat.mailthread.sent.close}</a></td>
</tr>

View File

@ -62,7 +62,7 @@
${if:errors}
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top"><img src='${webimroot}/images/icon_err.gif' width="40" height="40" border="0" alt="" /></td>
<td valign="top"><img src="${webimroot}/images/icon_err.gif" width="40" height="40" border="0" alt="" /></td>
<td width="10"></td>
<td class="text">
${errors}
@ -93,7 +93,7 @@ ${endif:errors}
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="javascript:window.close();" title="${msg:mailthread.close}"><img
src='${tplroot}/images/buttons/back.gif' width="25" height="25"
src="${tplroot}/images/buttons/back.gif" width="25" height="25"
border="0" alt="" /></a></td>
<td width="5"></td>
<td class="button"><a href="javascript:window.close();"
@ -129,9 +129,9 @@ ${endif:errors}
</tr>
<tr>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -53,7 +53,7 @@
<td align="right" style="padding-right:17px;">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
<td><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
<td width="5"></td>
<td class="button"><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}">${msg:chat.mailthread.sent.close}</a></td>
</tr>

View File

@ -53,7 +53,7 @@
<td align="right" style="padding-right:17px;padding-left:17px;">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="javascript:window.close();" title="${msg:page.chat.old_browser.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
<td><a href="javascript:window.close();" title="${msg:page.chat.old_browser.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
<td width="5"></td>
<td class="button"><a href="javascript:window.close();" title="${msg:page.chat.old_browser.close}">${msg:page.chat.old_browser.close}</a></td>
</tr>

View File

@ -75,7 +75,7 @@
<td align="right" style="padding-right:17px;">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="javascript:window.close();" title="${msg:chat.redirect.back}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
<td><a href="javascript:window.close();" title="${msg:chat.redirect.back}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
<td width="5"></td>
<td class="button"><a href="javascript:window.back();" title="${msg:chat.redirect.back}">${msg:chat.redirect.back}</a></td>
</tr>

View File

@ -53,7 +53,7 @@
<td align="right" style="padding-right:17px;">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="javascript:window.close();" title="${msg:chat.redirected.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
<td><a href="javascript:window.close();" title="${msg:chat.redirected.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
<td width="5"></td>
<td class="button"><a href="javascript:window.close();" title="${msg:chat.redirected.close}">${msg:chat.redirected.close}</a></td>
</tr>

View File

@ -85,7 +85,7 @@ ${ifnot:showmessage}<input type="hidden" name="message" value="${form:message}"/
<td align="right" style="padding-right:17px;">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="javascript:window.close();" title="${msg:leavemessage.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
<td><a href="javascript:window.close();" title="${msg:leavemessage.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
<td width="5"></td>
<td class="button"><a href="javascript:window.close();" title="${msg:leavemessage.close}">${msg:leavemessage.close}</a></td>
</tr>
@ -100,7 +100,7 @@ ${ifnot:showmessage}<input type="hidden" name="message" value="${form:message}"/
${if:errors}
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top"><img src='${webimroot}/images/icon_err.gif' width="40" height="40" border="0" alt="" /></td>
<td valign="top"><img src="${webimroot}/images/icon_err.gif" width="40" height="40" border="0" alt="" /></td>
<td width="10"></td>
<td class="text">
${errors}

View File

@ -134,16 +134,16 @@ ${if:user}
<div id="changename1" style="display:${page:displ1};">
<table cellspacing="0" cellpadding="0" border="0"><tr>
<td class="text" nowrap>${msg:chat.client.name}</td>
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="field"></td>
<td width="5" valign="top"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
<td width="5" valign="top"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage iexec" src="${webimroot}/images/free.gif" border="0" alt="&gt;&gt;" /></a></td>
</tr></table>
</div>
<div id="changename2" style="display:${page:displ2};">
<table cellspacing="0" cellpadding="0" border="0"><tr>
<td class="text" nowrap><a id="unamelink" href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}">${page:ct.user.name}</a></td>
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage ichangeuser" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
</tr></table>
</div>
@ -155,7 +155,7 @@ ${if:user}
${endif:canChangeName}
${endif:user}
${if:agent}
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}">
<img class="tplimage iclose" src="${webimroot}/images/free.gif" border="0" alt="${msg:chat.window.close_title}"/></a></td>
${endif:agent}
@ -182,7 +182,7 @@ ${if:sslLink}
<td><a href="${page:sslLink}&amp;style=${styleid}" title="SSL" >
<img class="tplimage issl" src="${webimroot}/images/free.gif" border="0" alt="SSL&nbsp;"/></a></td>
${endif:sslLink}
<td width="20" valign="top"><img src='${webimroot}/images/free.gif' width="20" height="1" border="0" alt="" /></td>
<td width="20" valign="top"><img src="${webimroot}/images/free.gif" width="20" height="1" border="0" alt="" /></td>
</tr>
</table>
@ -216,19 +216,19 @@ ${endif:sslLink}
<td colspan="2" width="100%" height="100%" valign="top" id="chatwndtd">
<table width="100%" cellspacing="0" cellpadding="0" border="0" style="height:100%;">
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="100%" height="100%" bgcolor="#FFFFFF" valign="top">
<iframe id="chatwnd" width="100%" height="100%" src="${if:neediframesrc}${webimroot}/images/blank.html${endif:neediframesrc}" frameborder="0" style="overflow:auto;">
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
</iframe>
</td>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
</table>
</td>
@ -289,7 +289,7 @@ ${if:canpost}
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
<td style="background-image: url(${webimroot}/images/submitbg.gif);" valign="top" class="submit">
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
<a id="sndmessagelnk" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}">${msg:chat.window.send_message_short,send_shortcut}</a><br/>
</td>
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
@ -304,9 +304,9 @@ ${endif:canpost}
</tr>
<tr>
<td width="10"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="585" height="1" border="0" alt="" /></td>
<td width="5"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
<td width="10"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="585" height="1" border="0" alt="" /></td>
<td width="5"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -52,7 +52,7 @@
</table>
</td>
<td width="5"></td>
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}"><img src='${tplroot}/images/buttons/closewin.gif' width="15" height="15" border="0" alt="${msg:chat.window.close_title}"/></a></td>
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}"><img src="${tplroot}/images/buttons/closewin.gif" width="15" height="15" border="0" alt="${msg:chat.window.close_title}"/></a></td>
<td width="5"></td>
</tr>
</table>
@ -67,17 +67,17 @@
<tr>
<td class="text" nowrap>${msg:chat.client.name}</td>
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="field"></td>
<td width="5" valign="top"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img src='${tplroot}/images/buttons/exec.gif' width="25" height="25" border="0" alt="&gt;&gt;" /></a></td>
<td width="5" valign="top"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img src="${tplroot}/images/buttons/exec.gif" width="25" height="25" border="0" alt="&gt;&gt;" /></a></td>
<td><img src='${tplroot}/images/buttondiv.gif' width="35" height="45" border="0" alt="" /></td>
<td><img src="${tplroot}/images/buttondiv.gif" width="35" height="45" border="0" alt="" /></td>
<td><a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onclick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0');this.newWindow.focus();this.newWindow.opener=window;return false;"><img src='${tplroot}/images/buttons/email.gif' width="25" height="25" border="0" alt="Mail" /></a></td>
<td><a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onclick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0');this.newWindow.focus();this.newWindow.opener=window;return false;"><img src="${tplroot}/images/buttons/email.gif" width="25" height="25" border="0" alt="Mail" /></a></td>
<td><a id="refresh" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.toolbar.refresh}">
<img src='${tplroot}/images/buttons/refresh.gif' width="25" height="25" border="0" alt="Refresh" /></a></td>
<img src="${tplroot}/images/buttons/refresh.gif" width="25" height="25" border="0" alt="Refresh" /></a></td>
@ -100,23 +100,23 @@
<table width="585" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="20" valign="top"><img src='${webimroot}${url:image.chat.history}' width="20" height="80" border="0" alt="History" /></td>
<td width="20" valign="top"><img src="${webimroot}${url:image.chat.history}" width="20" height="80" border="0" alt="History" /></td>
<td width="565" valign="top" id="chatwndtd">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="100%" bgcolor="#FFFFFF" valign="top">
<iframe name="chatwndiframe" width="100%" height="175" src="${webimroot}/thread.php?act=refresh&amp;thread=${page:ct.chatThreadId}&amp;token=${page:ct.token}&amp;html=on&amp;user=true" frameborder="0" style="overflow:auto;">
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
</iframe>
</td>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
</table>
</td>
@ -127,14 +127,14 @@
</tr>
<tr>
<td width="20" valign="top"><img src='${webimroot}${url:image.chat.message}' width="20" height="85" border="0" alt="Message" /></td>
<td width="20" valign="top"><img src="${webimroot}${url:image.chat.message}" width="20" height="85" border="0" alt="Message" /></td>
<td width="565" valign="top">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="565" height="85" bgcolor="#FFFFFF" valign="top">
<form id="messageform" method="post" action="${webimroot}/thread.php" target="chatwndiframe">
<input type="hidden" name="act" value="post"/><input type="hidden" name="html" value="on"/><input type="hidden" name="thread" value="${page:ct.chatThreadId}"/><input type="hidden" name="token" value="${page:ct.token}"/><input type="hidden" name="user" value="true"/>
@ -142,10 +142,10 @@
<textarea id="messagetext" cols="50" rows="4" class="message" style="width:550px;" tabindex="0"></textarea>
</form>
</td>
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
</table>
</td>
@ -174,12 +174,12 @@
<table cellspacing="0" cellpadding="0" border="0" id="postmessage">
<tr>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src='${webimroot}/images/submit.gif' width="40" height="35" border="0" alt=""/></a></td>
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src="${webimroot}/images/submit.gif" width="40" height="35" border="0" alt=""/></a></td>
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
<a id="msgsend1" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}">${msg:chat.window.send_message_short,send_shortcut}</a><br/>
</td>
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src='${webimroot}/images/submitrest.gif' width="10" height="35" border="0" alt=""/></a></td>
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src="${webimroot}/images/submitrest.gif" width="10" height="35" border="0" alt=""/></a></td>
</tr>
</table>
</td>
@ -190,9 +190,9 @@
</tr>
<tr>
<td width="10"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
<td width="585"><img src='${webimroot}/images/free.gif' width="585" height="1" border="0" alt="" /></td>
<td width="5"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
<td width="10"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
<td width="585"><img src="${webimroot}/images/free.gif" width="585" height="1" border="0" alt="" /></td>
<td width="5"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -38,17 +38,17 @@
<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr>
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr><tr><td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
</tr><tr><td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
${harderrors}
</td><td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
</td><td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr><tr><td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr>
</table>
@ -80,9 +80,9 @@
</tr>
<tr>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -109,7 +109,7 @@ ${endif:showcaptcha}
<tr>
<td><a href="javascript:document.leaveMessageForm.submit();" title="${msg:leavemessage.perform}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
<a href="javascript:document.leaveMessageForm.submit();" title="${msg:leavemessage.perform}">${msg:leavemessage.perform}</a><br/>
</td>
<td width="10"><a href="javascript:document.leaveMessageForm.submit();" title="${msg:leavemessage.perform}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
@ -136,9 +136,9 @@ ${endif:showcaptcha}
</tr>
<tr>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -39,22 +39,22 @@
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr>
<tr>
<td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
${msg:leavemessage.sent.message}<br/>
</td>
<td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr>
</table>
@ -86,9 +86,9 @@
</tr>
<tr>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -80,7 +80,7 @@ ${endif:errors}
<tr>
<td><a href="javascript:document.mailThreadForm.submit();" title="${msg:mailthread.perform}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
<a href="javascript:document.mailThreadForm.submit();" title="${msg:mailthread.perform}">${msg:mailthread.perform}</a><br/>
</td>
<td width="10"><a href="javascript:document.mailThreadForm.submit();" title="${msg:mailthread.perform}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
@ -104,9 +104,9 @@ ${endif:errors}
</tr>
<tr>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -39,24 +39,24 @@
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr>
<tr>
<td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
${msg:chat.mailthread.sent.content,email}<br/>
<a href="javascript:window.close();">${msg:chat.mailthread.sent.closewindow}</a>
</td>
<td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr>
</table>
@ -88,9 +88,9 @@
</tr>
<tr>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -37,17 +37,17 @@
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0"><tr>
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr><tr><td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
</tr><tr><td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
${msg:page.chat.old_browser.problem}
${msg:page.chat.old_browser.list}
</td><td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
</td><td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr><tr><td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr>
</table>
@ -79,9 +79,9 @@
</tr>
<tr>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -33,7 +33,7 @@
<td width="50%" height="90" class="window"><h1>${msg:chat.redirect.title}</h1></td>
<td width="50%" align="right" valign="bottom" class="window">
<h2>${msg:chat.redirect.choose}</h2>
<img src='${webimroot}/images/free.gif' width="1" height="5" border="0" alt="" /><br/>
<img src="${webimroot}/images/free.gif" width="1" height="5" border="0" alt="" /><br/>
</td>
</tr>
</table>
@ -48,12 +48,12 @@
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr>
<tr>
<td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
@ -85,12 +85,12 @@ ${endif:redirectToGroup}
</table>
</td>
<td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr>
</table>
@ -125,9 +125,9 @@ ${endif:redirectToGroup}
</tr>
<tr>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -39,24 +39,24 @@
<table width="100%" style="height:100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr>
<tr>
<td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
${page:message}<br/>
<a href="javascript:window.close();">${msg:chat.redirected.closewindow}</a>
</td>
<td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
</tr>
</table>
@ -88,9 +88,9 @@
</tr>
<tr>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -134,7 +134,7 @@ ${endif:showcaptcha}
<tr>
<td><a href="javascript:document.surveyForm.submit();" title="${msg:presurvey.submit}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
<a href="javascript:document.surveyForm.submit();" title="${msg:presurvey.submit}">${msg:presurvey.submit}</a><br/>
</td>
<td width="10"><a href="javascript:document.surveyForm.submit();" title="${msg:presurvey.submit}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
@ -161,9 +161,9 @@ ${endif:showcaptcha}
</tr>
<tr>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
</tr>
</table>

View File

@ -16,7 +16,7 @@
<table cellpadding="0" cellspacing="5" border="0"><tr>
<td class="text" nowrap>${msg:chat.client.name}</td>
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="field"></td>
<td><a href="javascript:void(0)" onClick="return false;" title="${msg:chat.client.changename}"><img src='${tplroot}/images/buttons/exec.gif' border="0" alt="${msg:chat.client.changename}" /></a></td>
<td><a href="javascript:void(0)" onClick="return false;" title="${msg:chat.client.changename}"><img src="${tplroot}/images/buttons/exec.gif" border="0" alt="${msg:chat.client.changename}" /></a></td>
</tr></table>
${else:canChangeName}
<table cellpadding="0" cellspacing="5" border="0"><tr><td>
@ -28,10 +28,10 @@
<td align="right">
<table cellpadding="0" cellspacing="5" border="0"><tr>
<td>
<a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onClick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0');this.newWindow.focus();this.newWindow.opener=window;return false;"><img src='${tplroot}/images/buttons/email.gif' border="0" alt="${msg:chat.window.toolbar.mail_history}" /></a>
<a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onClick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0');this.newWindow.focus();this.newWindow.opener=window;return false;"><img src="${tplroot}/images/buttons/email.gif" border="0" alt="${msg:chat.window.toolbar.mail_history}" /></a>
</td>
<td>
<a id="refresh" href="javascript:void(0)" onClick="return false;" title="${msg:chat.window.toolbar.refresh}"><img src='${tplroot}/images/buttons/refresh.gif' border="0" alt="${msg:chat.window.toolbar.refresh}" /></a>
<a id="refresh" href="javascript:void(0)" onClick="return false;" title="${msg:chat.window.toolbar.refresh}"><img src="${tplroot}/images/buttons/refresh.gif" border="0" alt="${msg:chat.window.toolbar.refresh}" /></a>
</td>
<td>
<a class="closethread" href="javascript:void(0)" onClick="return false;" title="${msg:chat.window.close_title}"><img src="${tplroot}/images/buttons/closewin.gif" border="0" alt="${msg:chat.window.close_title}"/></a>

View File

@ -37,8 +37,8 @@ require_once('inc_errors.php');
<?php if($page['canmodify']) { ?>
<div class="tabletool">
<img src='<?php echo $webimroot ?>/images/buttons/createagent.gif' border="0" alt="" />
<a href='<?php echo $webimroot ?>/operator/operator.php' title="<?php echo htmlspecialchars(getlocal("page_agents.new_agent")) ?>">
<img src="<?php echo $webimroot ?>/images/buttons/createagent.gif" border="0" alt="" />
<a href="<?php echo $webimroot ?>/operator/operator.php" title="<?php echo htmlspecialchars(getlocal("page_agents.new_agent")) ?>">
<?php echo getlocal("page_agents.new_agent") ?>
</a>
</div>

View File

@ -29,20 +29,20 @@ function tpl_content() { global $page, $webimroot;
<div>
<table class="nicebutton"><tr>
<td><a href="<?php echo htmlspecialchars($page['link']) ?>">
<img src='<?php echo $webimroot ?>/images/submit.gif' width="40" height="35" border="0" alt="" /></a></td>
<img src="<?php echo $webimroot ?>/images/submit.gif" width="40" height="35" border="0" alt="" /></a></td>
<td class="submit"><a href="<?php echo htmlspecialchars($page['link']) ?>">
<?php echo getlocal("confirm.take.yes") ?></a></td>
<td><a href="<?php echo htmlspecialchars($page['link']) ?>">
<img src='<?php echo $webimroot ?>/images/submitrest.gif' width="10" height="35" border="0" alt="" /></a></td>
<img src="<?php echo $webimroot ?>/images/submitrest.gif" width="10" height="35" border="0" alt="" /></a></td>
</tr></table>
<table class="nicebutton"><tr>
<td><a href="javascript:window.close();">
<img src='<?php echo $webimroot ?>/images/submit.gif' width="40" height="35" border="0" alt="" /></a></td>
<img src="<?php echo $webimroot ?>/images/submit.gif" width="40" height="35" border="0" alt="" /></a></td>
<td class="submit"><a href="javascript:window.close();">
<?php echo getlocal("confirm.take.no") ?></a></td>
<td><a href="javascript:window.close();">
<img src='<?php echo $webimroot ?>/images/submitrest.gif' width="10" height="35" border="0" alt="" /></a></td>
<img src="<?php echo $webimroot ?>/images/submitrest.gif" width="10" height="35" border="0" alt="" /></a></td>
</tr></table>
<br clear="all"/>

View File

@ -17,7 +17,7 @@
if( isset($errors) && count($errors) > 0 ) { ?>
<div class="errinfo">
<img src='<?php echo $webimroot ?>/images/icon_err.gif' width="40" height="40" border="0" alt="" class="left"/>
<img src="<?php echo $webimroot ?>/images/icon_err.gif" width="40" height="40" border="0" alt="" class="left"/>
<?php
print getlocal("errors.header");
foreach( $errors as $e ) {

View File

@ -34,44 +34,44 @@ function tpl_menu() { global $page, $webimroot, $errors;
<li>
<h2><?php echo getlocal('right.main') ?></h2>
<ul class="submenu">
<li<?php menuli("main")?>><a href='<?php echo $webimroot ?>/operator/index.php'><?php echo getlocal('topMenu.main') ?></a></li>
<li<?php menuli("users")?>><a href='<?php echo $webimroot ?>/operator/users.php'><?php echo getlocal('topMenu.users') ?></a> <span class="small">(<a class="inner" href='<?php echo $webimroot ?>/operator/users.php?nomenu'><?php echo getlocal('topMenu.users.nomenu') ?></a>)</span></li>
<li<?php menuli("history")?>><a href='<?php echo $webimroot ?>/operator/history.php'><?php echo getlocal('page_analysis.search.title') ?></a></li>
<li<?php menuli("main")?>><a href="<?php echo $webimroot ?>/operator/index.php"><?php echo getlocal('topMenu.main') ?></a></li>
<li<?php menuli("users")?>><a href="<?php echo $webimroot ?>/operator/users.php"><?php echo getlocal('topMenu.users') ?></a> <span class="small">(<a class="inner" href="<?php echo $webimroot ?>/operator/users.php?nomenu"><?php echo getlocal('topMenu.users.nomenu') ?></a>)</span></li>
<li<?php menuli("history")?>><a href="<?php echo $webimroot ?>/operator/history.php"><?php echo getlocal('page_analysis.search.title') ?></a></li>
<?php if(isset($page['showstat']) && $page['showstat']) { ?>
<li<?php menuli("statistics")?>><a href='<?php echo $webimroot ?>/operator/statistics.php'><?php echo getlocal('statistics.title') ?></a></li>
<li<?php menuli("statistics")?>><a href="<?php echo $webimroot ?>/operator/statistics.php"><?php echo getlocal('statistics.title') ?></a></li>
<?php } ?>
<?php if(isset($page['showban']) && $page['showban']) { ?>
<li<?php menuli("blocked")?>><a href='<?php echo $webimroot ?>/operator/blocked.php'><?php echo getlocal('menu.blocked') ?></a></li>
<li<?php menuli("blocked")?>><a href="<?php echo $webimroot ?>/operator/blocked.php"><?php echo getlocal('menu.blocked') ?></a></li>
<?php } ?>
</ul>
</li>
<li>
<h2><?php echo getlocal('right.administration') ?></h2>
<ul class="submenu">
<li<?php menuli("canned")?>><a href='<?php echo $webimroot ?>/operator/canned.php'><?php echo getlocal('menu.canned') ?></a></li>
<li<?php menuli("canned")?>><a href="<?php echo $webimroot ?>/operator/canned.php"><?php echo getlocal('menu.canned') ?></a></li>
<?php if(isset($page['showadmin']) && $page['showadmin']) { ?>
<li<?php menuli("getcode")?>><a href='<?php echo $webimroot ?>/operator/getcode.php'><?php echo getlocal('leftMenu.client_gen_button') ?></a></li>
<li<?php menuli("operators")?>><a href='<?php echo $webimroot ?>/operator/operators.php'><?php echo getlocal('leftMenu.client_agents') ?></a></li>
<li<?php menuli("getcode")?>><a href="<?php echo $webimroot ?>/operator/getcode.php"><?php echo getlocal('leftMenu.client_gen_button') ?></a></li>
<li<?php menuli("operators")?>><a href="<?php echo $webimroot ?>/operator/operators.php"><?php echo getlocal('leftMenu.client_agents') ?></a></li>
<?php if(isset($page['showgroups']) && $page['showgroups']) { ?>
<li<?php menuli("groups")?>><a href='<?php echo $webimroot ?>/operator/groups.php'><?php echo getlocal('menu.groups') ?></a></li>
<li<?php menuli("groups")?>><a href="<?php echo $webimroot ?>/operator/groups.php"><?php echo getlocal('menu.groups') ?></a></li>
<?php } ?>
<li<?php menuli("settings")?>><a href='<?php echo $webimroot ?>/operator/settings.php'><?php echo getlocal('leftMenu.client_settings') ?></a></li>
<li<?php menuli("translate")?>><a href='<?php echo $webimroot ?>/operator/translate.php'><?php echo getlocal('menu.translate') ?></a></li>
<li<?php menuli("updates")?>><a href='<?php echo $webimroot ?>/operator/updates.php'><?php echo getlocal('menu.updates') ?></a></li>
<li<?php menuli("notifications")?>><a href='<?php echo $webimroot ?>/operator/notifications.php'><?php echo getlocal('menu.notifications') ?></a></li>
<li<?php menuli("settings")?>><a href="<?php echo $webimroot ?>/operator/settings.php"><?php echo getlocal('leftMenu.client_settings') ?></a></li>
<li<?php menuli("translate")?>><a href="<?php echo $webimroot ?>/operator/translate.php"><?php echo getlocal('menu.translate') ?></a></li>
<li<?php menuli("updates")?>><a href="<?php echo $webimroot ?>/operator/updates.php"><?php echo getlocal('menu.updates') ?></a></li>
<li<?php menuli("notifications")?>><a href="<?php echo $webimroot ?>/operator/notifications.php"><?php echo getlocal('menu.notifications') ?></a></li>
<?php } ?>
<?php if(isset($page['currentopid']) && $page['currentopid']) {?>
<li<?php menuli("profile")?>><a href='<?php echo $webimroot ?>/operator/operator.php?op=<?php echo $page['currentopid'] ?>'><?php echo getlocal('menu.profile') ?></a></li>
<li<?php menuli("profile")?>><a href="<?php echo $webimroot ?>/operator/operator.php?op=<?php echo urlencode($page['currentopid']) ?>"><?php echo getlocal('menu.profile') ?></a></li>
<?php } ?>
</ul>
</li>
<li>
<h2><?php echo getlocal('right.other') ?></h2>
<ul class="submenu">
<li><a href='<?php echo $webimroot ?>/operator/logout.php'><?php echo getlocal('topMenu.logoff') ?></a></li>
<li><a href="<?php echo $webimroot ?>/operator/logout.php"><?php echo getlocal('topMenu.logoff') ?></a></li>
</ul>
</li>
<?php
}
<?php
}
}
?>