diff options
author | Philip Nicolcev <frugen@gmail.com> | 2016-04-30 15:54:09 -0400 |
---|---|---|
committer | Philip Nicolcev <frugen@gmail.com> | 2016-04-30 15:54:09 -0400 |
commit | b1e8bfc2d510002b1166e60ddd439cb36233c0b9 (patch) | |
tree | 79dba60ca467c2e48a46221c6007ed1cd0df273d | |
parent | 63e23a6afe77f624c13f9390682a5f362fb0d4c7 (diff) | |
parent | 6a4c92984fbe42e4633a6a65792847973f7d36da (diff) | |
download | AJAX-Chat-origin/xenforo.zip AJAX-Chat-origin/xenforo.tar.gz AJAX-Chat-origin/xenforo.tar.bz2 |
Merge remote-tracking branch 'origin' into xenforoorigin/xenforo
Conflicts:
chat/lib/custom.php
66 files changed, 21 insertions, 75 deletions
diff --git a/chat/changelog.txt b/chat/changelog.txt index e3d0831..714f705 100644 --- a/chat/changelog.txt +++ b/chat/changelog.txt @@ -870,3 +870,11 @@ Bugfixes: Misc: - Removed unneeded call to mt_srand() - thanks to Joshua Embrey. + +Version 0.8.9 (??.??.2016) +------------------------------- +Bugfixes: +- French translation typo fixed. - thanks to Excale. + +Misc: +- Database userID and channel fields changed to unsigned int. diff --git a/chat/chat.sql b/chat/chat.sql index 5e7efea..9daae49 100644 --- a/chat/chat.sql +++ b/chat/chat.sql @@ -1,10 +1,9 @@ - DROP TABLE IF EXISTS ajax_chat_online; CREATE TABLE ajax_chat_online ( - userID INT(11) NOT NULL, + userID INT(10) UNSIGNED NOT NULL, userName VARCHAR(64) NOT NULL, userRole INT(1) NOT NULL, - channel INT(11) NOT NULL, + channel INT(10) UNSIGNED NOT NULL, dateTime DATETIME NOT NULL, ip VARBINARY(16) NOT NULL, PRIMARY KEY (userID), @@ -14,10 +13,10 @@ CREATE TABLE ajax_chat_online ( DROP TABLE IF EXISTS ajax_chat_messages; CREATE TABLE ajax_chat_messages ( id INT(11) NOT NULL AUTO_INCREMENT, - userID INT(11) NOT NULL, + userID INT(10) UNSIGNED NOT NULL, userName VARCHAR(64) NOT NULL, userRole INT(1) NOT NULL, - channel INT(11) NOT NULL, + channel INT(10) UNSIGNED NOT NULL, dateTime DATETIME NOT NULL, ip VARBINARY(16) NOT NULL, text TEXT, @@ -28,7 +27,7 @@ CREATE TABLE ajax_chat_messages ( DROP TABLE IF EXISTS ajax_chat_bans; CREATE TABLE ajax_chat_bans ( - userID INT(11) NOT NULL, + userID INT(10) UNSIGNED NOT NULL, userName VARCHAR(64) NOT NULL, dateTime DATETIME NOT NULL, ip VARBINARY(16) NOT NULL, @@ -39,8 +38,8 @@ CREATE TABLE ajax_chat_bans ( DROP TABLE IF EXISTS ajax_chat_invitations; CREATE TABLE ajax_chat_invitations ( - userID INT(11) NOT NULL, - channel INT(11) NOT NULL, + userID INT(10) UNSIGNED NOT NULL, + channel INT(10) UNSIGNED NOT NULL, dateTime DATETIME NOT NULL, PRIMARY KEY (userID, channel), INDEX (dateTime) diff --git a/chat/index.php b/chat/index.php index 05cce57..26e50ca 100644 --- a/chat/index.php +++ b/chat/index.php @@ -9,7 +9,7 @@ */ // Suppress errors: -error_reporting(0); +ini_set('display_errors', 0); // Path to the chat directory: define('AJAX_CHAT_PATH', dirname($_SERVER['SCRIPT_FILENAME']).'/'); diff --git a/chat/install.php b/chat/install.php index fd19e1b..ac579a3 100644 --- a/chat/install.php +++ b/chat/install.php @@ -9,6 +9,7 @@ // Show all errors: error_reporting(E_ALL); +ini_set('display_errors', 1); // Remember to set up the config file to point to your database: file_exists('lib/config.php') or die('Failed to load lib/config.php. Did you remember to create a config file based on config.php.example?'); @@ -31,8 +32,7 @@ class CustomAJAXChatInstaller extends CustomAJAXChatInterface { $lines = file(AJAX_CHAT_PATH.'chat.sql'); // Stop if an error occurs: if(!$lines) { - echo 'Failed to load queries from file (chat.sql).'; - die(); + die('Failed to load queries from file (chat.sql).'); } foreach($lines as $line) { if(empty($line)) { @@ -77,4 +77,3 @@ $ajaxChatInstaller = new CustomAJAXChatInstaller(); // Create the database tables: $ajaxChatInstaller->createDataBaseTables(); -?>
\ No newline at end of file diff --git a/chat/js/lang/fr.js b/chat/js/lang/fr.js index 35846f9..a81c84f 100644 --- a/chat/js/lang/fr.js +++ b/chat/js/lang/fr.js @@ -20,7 +20,7 @@ var ajaxChatLang = { privmsg: '(murmure)', privmsgto: '(murmure à l’oreille de %s)', invite: '%s vous invite à rejoindre %s.', - inviteto: 'Votre invation pour %s à rejoindre le salon %s a bien été envoyée.', + inviteto: 'Votre invitation pour %s à rejoindre le salon %s a bien été envoyée.', uninvite: '%s annule son invitation pour le salon %s.', uninviteto: 'Votre annulaton d’invitation pour %s au salon %s a bien été envoyée.', queryOpen: 'Salon privé ouvert sous le titre %s.', diff --git a/chat/lib/class/AJAXChat.php b/chat/lib/class/AJAXChat.php index e0b44fd..dcd12b4 100644 --- a/chat/lib/class/AJAXChat.php +++ b/chat/lib/class/AJAXChat.php @@ -3320,4 +3320,3 @@ class AJAXChat { } } -?> diff --git a/chat/lib/class/AJAXChatDataBase.php b/chat/lib/class/AJAXChatDataBase.php index 2143c5a..3b4d07f 100644 --- a/chat/lib/class/AJAXChatDataBase.php +++ b/chat/lib/class/AJAXChatDataBase.php @@ -78,4 +78,3 @@ class AJAXChatDataBase { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/AJAXChatEncoding.php b/chat/lib/class/AJAXChatEncoding.php index 96b2482..136d54b 100644 --- a/chat/lib/class/AJAXChatEncoding.php +++ b/chat/lib/class/AJAXChatEncoding.php @@ -135,4 +135,3 @@ class AJAXChatEncoding { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/AJAXChatFileSystem.php b/chat/lib/class/AJAXChatFileSystem.php index c9626c3..c3c36a4 100644 --- a/chat/lib/class/AJAXChatFileSystem.php +++ b/chat/lib/class/AJAXChatFileSystem.php @@ -19,4 +19,3 @@ class AJAXChatFileSystem { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/AJAXChatHTTPHeader.php b/chat/lib/class/AJAXChatHTTPHeader.php index 7340bfc..e488367 100644 --- a/chat/lib/class/AJAXChatHTTPHeader.php +++ b/chat/lib/class/AJAXChatHTTPHeader.php @@ -45,7 +45,7 @@ class AJAXChatHTTPHeader { header('Vary: Accept'); } } - + // Method to return the content-type string: function getContentType() { // Return the content-type string: @@ -53,4 +53,3 @@ class AJAXChatHTTPHeader { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/AJAXChatLanguage.php b/chat/lib/class/AJAXChatLanguage.php index b197247..7369025 100644 --- a/chat/lib/class/AJAXChatLanguage.php +++ b/chat/lib/class/AJAXChatLanguage.php @@ -99,4 +99,3 @@ class AJAXChatLanguage { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/AJAXChatMySQLDataBase.php b/chat/lib/class/AJAXChatMySQLDataBase.php index 6dca348..c6cf098 100644 --- a/chat/lib/class/AJAXChatMySQLDataBase.php +++ b/chat/lib/class/AJAXChatMySQLDataBase.php @@ -89,4 +89,3 @@ class AJAXChatDataBaseMySQL { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/AJAXChatMySQLQuery.php b/chat/lib/class/AJAXChatMySQLQuery.php index f2f3fd4..fd7a451 100644 --- a/chat/lib/class/AJAXChatMySQLQuery.php +++ b/chat/lib/class/AJAXChatMySQLQuery.php @@ -86,4 +86,3 @@ class AJAXChatMySQLQuery { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/AJAXChatMySQLiDataBase.php b/chat/lib/class/AJAXChatMySQLiDataBase.php index 9bc611e..bd3db34 100644 --- a/chat/lib/class/AJAXChatMySQLiDataBase.php +++ b/chat/lib/class/AJAXChatMySQLiDataBase.php @@ -88,4 +88,3 @@ class AJAXChatDataBaseMySQLi { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/AJAXChatMySQLiQuery.php b/chat/lib/class/AJAXChatMySQLiQuery.php index f81afd8..4ee5787 100644 --- a/chat/lib/class/AJAXChatMySQLiQuery.php +++ b/chat/lib/class/AJAXChatMySQLiQuery.php @@ -78,4 +78,3 @@ class AJAXChatMySQLiQuery { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/AJAXChatString.php b/chat/lib/class/AJAXChatString.php index 8997da5..0cd2ed6 100644 --- a/chat/lib/class/AJAXChatString.php +++ b/chat/lib/class/AJAXChatString.php @@ -34,4 +34,3 @@ class AJAXChatString { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/AJAXChatTemplate.php b/chat/lib/class/AJAXChatTemplate.php index 16e53a7..839cbe5 100644 --- a/chat/lib/class/AJAXChatTemplate.php +++ b/chat/lib/class/AJAXChatTemplate.php @@ -326,4 +326,3 @@ class AJAXChatTemplate { } } -?> diff --git a/chat/lib/class/CustomAJAXChatInterface.php b/chat/lib/class/CustomAJAXChatInterface.php index a950739..dc0a70f 100644 --- a/chat/lib/class/CustomAJAXChatInterface.php +++ b/chat/lib/class/CustomAJAXChatInterface.php @@ -18,4 +18,3 @@ class CustomAJAXChatInterface extends CustomAJAXChat { } } -?>
\ No newline at end of file diff --git a/chat/lib/class/CustomAJAXChatShoutBox.php b/chat/lib/class/CustomAJAXChatShoutBox.php index c014d63..c545032 100644 --- a/chat/lib/class/CustomAJAXChatShoutBox.php +++ b/chat/lib/class/CustomAJAXChatShoutBox.php @@ -22,4 +22,3 @@ class CustomAJAXChatShoutBox extends CustomAJAXChat { } } -?>
\ No newline at end of file diff --git a/chat/lib/classes.php b/chat/lib/classes.php index ff1dee2..105aeeb 100644 --- a/chat/lib/classes.php +++ b/chat/lib/classes.php @@ -23,4 +23,3 @@ require(AJAX_CHAT_PATH.'lib/class/AJAXChatTemplate.php'); require(AJAX_CHAT_PATH.'lib/class/CustomAJAXChat.php'); require(AJAX_CHAT_PATH.'lib/class/CustomAJAXChatShoutBox.php'); require(AJAX_CHAT_PATH.'lib/class/CustomAJAXChatInterface.php'); -?>
\ No newline at end of file diff --git a/chat/lib/config.php.example b/chat/lib/config.php.example index a9711d4..8a28b55 100644 --- a/chat/lib/config.php.example +++ b/chat/lib/config.php.example @@ -208,4 +208,3 @@ $config['socketServerIP'] = '127.0.0.1'; $config['socketServerPort'] = 1935; // This ID can be used to distinguish between different chat installations using the same socket server: $config['socketServerChatID'] = 0; -?> diff --git a/chat/lib/custom.php b/chat/lib/custom.php index b5c2e19..06116f3 100644 --- a/chat/lib/custom.php +++ b/chat/lib/custom.php @@ -26,4 +26,3 @@ $dependencies->preLoadData(); XenForo_Session::startPublicSession(); error_reporting(E_ALL & ~E_NOTICE); // Turn off the strict error reporting. -?>
\ No newline at end of file diff --git a/chat/lib/data/channels.php b/chat/lib/data/channels.php index 8688e5e..13a6b6a 100644 --- a/chat/lib/data/channels.php +++ b/chat/lib/data/channels.php @@ -13,4 +13,3 @@ $channels = array(); // Sample channel list: $channels[0] = 'Public'; $channels[1] = 'Private'; -?>
\ No newline at end of file diff --git a/chat/lib/data/users.php b/chat/lib/data/users.php index 52ca77e..16914cf 100644 --- a/chat/lib/data/users.php +++ b/chat/lib/data/users.php @@ -37,4 +37,3 @@ $users[3]['userRole'] = AJAX_CHAT_USER; $users[3]['userName'] = 'user'; $users[3]['password'] = 'user'; $users[3]['channels'] = array(0,1); -?>
\ No newline at end of file diff --git a/chat/lib/lang/ar.php b/chat/lib/lang/ar.php index b04e55c..5e6f0c7 100644 --- a/chat/lib/lang/ar.php +++ b/chat/lib/lang/ar.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'الوقت'; $lang['logsSearch'] = 'بحث'; $lang['logsPrivateChannels'] = 'القنوات الخاصة'; $lang['logsPrivateMessages'] = 'الرسائل الخاصة'; -?> diff --git a/chat/lib/lang/bg.php b/chat/lib/lang/bg.php index 1a5e43d..1c76f1d 100644 --- a/chat/lib/lang/bg.php +++ b/chat/lib/lang/bg.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Време'; $lang['logsSearch'] = 'Търсене'; $lang['logsPrivateChannels'] = 'Лични канали'; $lang['logsPrivateMessages'] = 'Лични съобщения'; -?> diff --git a/chat/lib/lang/ca.php b/chat/lib/lang/ca.php index d059a3b..7c11091 100644 --- a/chat/lib/lang/ca.php +++ b/chat/lib/lang/ca.php @@ -125,4 +125,3 @@ $lang['logsSearch'] = 'Buscar'; $lang['logsPrivateChannels'] = 'Canals privats'; $lang['logsPrivateMessages'] = 'Missatges privats'; -?> diff --git a/chat/lib/lang/cy.php b/chat/lib/lang/cy.php index 9e47e45..4202928 100644 --- a/chat/lib/lang/cy.php +++ b/chat/lib/lang/cy.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Amser'; $lang['logsSearch'] = 'Chwilio'; $lang['logsPrivateChannels'] = 'Sianeli Preifat'; $lang['logsPrivateMessages'] = 'Negeseuon Preifat'; -?> diff --git a/chat/lib/lang/cz.php b/chat/lib/lang/cz.php index 4eb3ca2..cda3b7d 100644 --- a/chat/lib/lang/cz.php +++ b/chat/lib/lang/cz.php @@ -123,4 +123,3 @@ $lang['logsTime'] = 'Čas'; $lang['logsSearch'] = 'Hledej'; $lang['logsPrivateChannels'] = 'Soukromé místnosti'; $lang['logsPrivateMessages'] = 'Soukromé zprávy'; -?> diff --git a/chat/lib/lang/da.php b/chat/lib/lang/da.php index d710eb6..9616189 100644 --- a/chat/lib/lang/da.php +++ b/chat/lib/lang/da.php @@ -123,4 +123,3 @@ $lang['logsTime'] = 'Tid'; $lang['logsSearch'] = 'Søg'; $lang['logsPrivateChannels'] = 'Private Kanaler'; $lang['logsPrivateMessages'] = 'Private Beskeder'; -?> diff --git a/chat/lib/lang/de.php b/chat/lib/lang/de.php index 9522648..1a236ec 100644 --- a/chat/lib/lang/de.php +++ b/chat/lib/lang/de.php @@ -123,4 +123,3 @@ $lang['logsTime'] = 'Uhrzeit'; $lang['logsSearch'] = 'Suche'; $lang['logsPrivateChannels'] = 'Private Räume'; $lang['logsPrivateMessages'] = 'Private Nachrichten'; -?> diff --git a/chat/lib/lang/el.php b/chat/lib/lang/el.php index a906ca8..36d486c 100644 --- a/chat/lib/lang/el.php +++ b/chat/lib/lang/el.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Ώρα'; $lang['logsSearch'] = 'Αναζήτηση'; $lang['logsPrivateChannels'] = 'Πριβέ κανάλια'; $lang['logsPrivateMessages'] = 'προσωπικά μηνύματα'; -?> diff --git a/chat/lib/lang/en.php b/chat/lib/lang/en.php index 97e18cf..138e249 100644 --- a/chat/lib/lang/en.php +++ b/chat/lib/lang/en.php @@ -123,4 +123,3 @@ $lang['logsTime'] = 'Time'; $lang['logsSearch'] = 'Search'; $lang['logsPrivateChannels'] = 'Private Channels'; $lang['logsPrivateMessages'] = 'Private Messages'; -?> diff --git a/chat/lib/lang/es.php b/chat/lib/lang/es.php index afc91c8..4532ae5 100644 --- a/chat/lib/lang/es.php +++ b/chat/lib/lang/es.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Hora'; $lang['logsSearch'] = 'Buscar'; $lang['logsPrivateChannels'] = 'Canales Privados'; $lang['logsPrivateMessages'] = 'Mensajes Privados'; -?> diff --git a/chat/lib/lang/et.php b/chat/lib/lang/et.php index bd438db..f3cfbec 100644 --- a/chat/lib/lang/et.php +++ b/chat/lib/lang/et.php @@ -123,4 +123,3 @@ $lang['logsTime'] = 'Kellaaeg'; $lang['logsSearch'] = 'Otsi'; $lang['logsPrivateChannels'] = 'Privaat-kanalid'; $lang['logsPrivateMessages'] = 'Privaat-sõnumid'; -?> diff --git a/chat/lib/lang/fa.php b/chat/lib/lang/fa.php index 0c64586..3b2a47e 100644 --- a/chat/lib/lang/fa.php +++ b/chat/lib/lang/fa.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'زمان'; $lang['logsSearch'] = 'جست و جو'; $lang['logsPrivateChannels'] = 'اطاق های خصوصی'; $lang['logsPrivateMessages'] = 'پیغام های خصوصی'; -?> diff --git a/chat/lib/lang/fi.php b/chat/lib/lang/fi.php index e30782b..094ecd6 100644 --- a/chat/lib/lang/fi.php +++ b/chat/lib/lang/fi.php @@ -125,4 +125,3 @@ $lang['logsTime'] = 'Aika'; $lang['logsSearch'] = 'Etsi'; $lang['logsPrivateChannels'] = 'Näytä yksityiset kanavat'; $lang['logsPrivateMessages'] = 'Yksityiset viestit'; -?> diff --git a/chat/lib/lang/fr.php b/chat/lib/lang/fr.php index ac14e15..e260853 100644 --- a/chat/lib/lang/fr.php +++ b/chat/lib/lang/fr.php @@ -125,4 +125,3 @@ $lang['logsTime'] = 'Heure'; $lang['logsSearch'] = 'Chercher'; $lang['logsPrivateChannels'] = 'Salons privés'; $lang['logsPrivateMessages'] = 'Messages privés'; -?> diff --git a/chat/lib/lang/gl.php b/chat/lib/lang/gl.php index 7491cb9..2161faf 100644 --- a/chat/lib/lang/gl.php +++ b/chat/lib/lang/gl.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Hora'; $lang['logsSearch'] = 'Buscar'; $lang['logsPrivateChannels'] = 'Canles privadas'; $lang['logsPrivateMessages'] = 'mensaxes privadas'; -?> diff --git a/chat/lib/lang/he.php b/chat/lib/lang/he.php index 80f3ba0..78c6b85 100644 --- a/chat/lib/lang/he.php +++ b/chat/lib/lang/he.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'זמן'; $lang['logsSearch'] = 'חיפוש'; $lang['logsPrivateChannels'] = 'ערוצים פרטיים'; $lang['logsPrivateMessages'] = 'הודעות פרטיות'; -?> diff --git a/chat/lib/lang/hr.php b/chat/lib/lang/hr.php index 49bb6e8..c628362 100644 --- a/chat/lib/lang/hr.php +++ b/chat/lib/lang/hr.php @@ -123,4 +123,3 @@ $lang['logsTime'] = 'Vrijeme'; $lang['logsSearch'] = 'Traži'; $lang['logsPrivateChannels'] = 'Privatni kanali'; $lang['logsPrivateMessages'] = 'Privatne poruke'; -?> diff --git a/chat/lib/lang/hu.php b/chat/lib/lang/hu.php index 146b381..7c7975d 100644 --- a/chat/lib/lang/hu.php +++ b/chat/lib/lang/hu.php @@ -123,4 +123,3 @@ $lang['logsTime'] = 'Idő'; $lang['logsSearch'] = 'Keresés'; $lang['logsPrivateChannels'] = 'Privát szobák'; $lang['logsPrivateMessages'] = 'Privát üzenetek'; -?> diff --git a/chat/lib/lang/in.php b/chat/lib/lang/in.php index 8940d1d..0fb3f19 100644 --- a/chat/lib/lang/in.php +++ b/chat/lib/lang/in.php @@ -123,4 +123,3 @@ $lang['logsTime'] = 'Waktu'; $lang['logsSearch'] = 'Cari'; $lang['logsPrivateChannels'] = 'Saluran-saluran privasi'; $lang['logsPrivateMessages'] = 'Pesan Pribadi'; -?> diff --git a/chat/lib/lang/it.php b/chat/lib/lang/it.php index 6901053..87264eb 100644 --- a/chat/lib/lang/it.php +++ b/chat/lib/lang/it.php @@ -125,4 +125,3 @@ $lang['logsTime'] = 'Ora'; $lang['logsSearch'] = 'Cerca'; $lang['logsPrivateChannels'] = 'Canali Privati'; $lang['logsPrivateMessages'] = 'Messaggi privati'; -?> diff --git a/chat/lib/lang/ja.php b/chat/lib/lang/ja.php index efe3080..324b749 100644 --- a/chat/lib/lang/ja.php +++ b/chat/lib/lang/ja.php @@ -123,4 +123,3 @@ $lang['logsTime'] = '時間'; $lang['logsSearch'] = '検索'; $lang['logsPrivateChannels'] = '二人きりモード'; $lang['logsPrivateMessages'] = 'プライベートメッセージ'; -?> diff --git a/chat/lib/lang/ka.php b/chat/lib/lang/ka.php index 96cb954..cffdffd 100644 --- a/chat/lib/lang/ka.php +++ b/chat/lib/lang/ka.php @@ -123,4 +123,3 @@ $lang['logsTime'] = 'დრო'; $lang['logsSearch'] = 'ძიება'; $lang['logsPrivateChannels'] = 'პირადი არხები'; $lang['logsPrivateMessages'] = 'პირადი გზავნილები'; -?> diff --git a/chat/lib/lang/kr.php b/chat/lib/lang/kr.php index 1dc4c1e..2d57dd2 100644 --- a/chat/lib/lang/kr.php +++ b/chat/lib/lang/kr.php @@ -123,4 +123,3 @@ $lang['logsTime'] = '시간'; $lang['logsSearch'] = '검색'; $lang['logsPrivateChannels'] = '개인채널'; $lang['logsPrivateMessages'] = '개인 메시지'; -?> diff --git a/chat/lib/lang/mk.php b/chat/lib/lang/mk.php index d713ad3..d9c3c2d 100644 --- a/chat/lib/lang/mk.php +++ b/chat/lib/lang/mk.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Време'; $lang['logsSearch'] = 'Пребарување'; $lang['logsPrivateChannels'] = 'Приватни канали'; $lang['logsPrivateMessages'] = 'Приватни пораки'; -?> diff --git a/chat/lib/lang/nl-be.php b/chat/lib/lang/nl-be.php index 8449aeb..594cb8d 100644 --- a/chat/lib/lang/nl-be.php +++ b/chat/lib/lang/nl-be.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Tijd'; $lang['logsSearch'] = 'Zoek'; $lang['logsPrivateChannels'] = 'Privékanalen'; $lang['logsPrivateMessages'] = 'Privéberichten'; -?> diff --git a/chat/lib/lang/nl.php b/chat/lib/lang/nl.php index f984db5..8a3c267 100644 --- a/chat/lib/lang/nl.php +++ b/chat/lib/lang/nl.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Tijd'; $lang['logsSearch'] = 'Zoek'; $lang['logsPrivateChannels'] = 'Privékanalen'; $lang['logsPrivateMessages'] = 'Privéberichten'; -?> diff --git a/chat/lib/lang/no.php b/chat/lib/lang/no.php index 855efd5..c562821 100644 --- a/chat/lib/lang/no.php +++ b/chat/lib/lang/no.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Tid'; $lang['logsSearch'] = 'Søk'; $lang['logsPrivateChannels'] = 'Private Kanaler'; $lang['logsPrivateMessages'] = 'Private Meldinger'; -?> diff --git a/chat/lib/lang/pl.php b/chat/lib/lang/pl.php index dd041f1..9b60db6 100644 --- a/chat/lib/lang/pl.php +++ b/chat/lib/lang/pl.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Czas'; $lang['logsSearch'] = 'Szukaj'; $lang['logsPrivateChannels'] = 'Prywatne pokoje'; $lang['logsPrivateMessages'] = 'Prywatne wiadomości'; -?> diff --git a/chat/lib/lang/pt-br.php b/chat/lib/lang/pt-br.php index 8837a1e..01a2191 100644 --- a/chat/lib/lang/pt-br.php +++ b/chat/lib/lang/pt-br.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Hora'; $lang['logsSearch'] = 'Pesquisar'; $lang['logsPrivateChannels'] = 'Canais privados'; $lang['logsPrivateMessages'] = 'Mensagens privadas'; -?> diff --git a/chat/lib/lang/pt-pt.php b/chat/lib/lang/pt-pt.php index 0576b30..d1d2374 100644 --- a/chat/lib/lang/pt-pt.php +++ b/chat/lib/lang/pt-pt.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Tempo'; $lang['logsSearch'] = 'Procurar'; $lang['logsPrivateChannels'] = 'Salas privadas'; $lang['logsPrivateMessages'] = 'Mensagens privadas'; -?> diff --git a/chat/lib/lang/ro.php b/chat/lib/lang/ro.php index db62fb5..4810422 100644 --- a/chat/lib/lang/ro.php +++ b/chat/lib/lang/ro.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Ora'; $lang['logsSearch'] = 'Caută'; $lang['logsPrivateChannels'] = 'Canale private'; $lang['logsPrivateMessages'] = 'Mesaje private'; -?> diff --git a/chat/lib/lang/ru.php b/chat/lib/lang/ru.php index 5fb6d91..1ee1c89 100644 --- a/chat/lib/lang/ru.php +++ b/chat/lib/lang/ru.php @@ -125,4 +125,3 @@ $lang['logsTime'] = 'Время'; $lang['logsSearch'] = 'Поиск'; $lang['logsPrivateChannels'] = 'Приватные каналы'; $lang['logsPrivateMessages'] = 'Приватные сообщения'; -?> diff --git a/chat/lib/lang/sk.php b/chat/lib/lang/sk.php index 752190d..886a114 100644 --- a/chat/lib/lang/sk.php +++ b/chat/lib/lang/sk.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Čas'; $lang['logsSearch'] = 'Vyhľadávanie'; $lang['logsPrivateChannels'] = 'Súkromný kanál'; $lang['logsPrivateMessages'] = 'Súkromná správa'; -?> diff --git a/chat/lib/lang/sl.php b/chat/lib/lang/sl.php index 4a5a7b6..a80b1c4 100644 --- a/chat/lib/lang/sl.php +++ b/chat/lib/lang/sl.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Ura'; $lang['logsSearch'] = 'Iskanje'; $lang['logsPrivateChannels'] = 'Privatne sobe'; $lang['logsPrivateMessages'] = 'Privatna sporočila'; -?> diff --git a/chat/lib/lang/sr.php b/chat/lib/lang/sr.php index 1a99a3e..f391083 100644 --- a/chat/lib/lang/sr.php +++ b/chat/lib/lang/sr.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Vreme'; $lang['logsSearch'] = 'Pretraga'; $lang['logsPrivateChannels'] = 'Privatne sobe'; $lang['logsPrivateMessages'] = 'Privatne poruke'; -?> diff --git a/chat/lib/lang/sv.php b/chat/lib/lang/sv.php index 4bf8403..f2d6060 100644 --- a/chat/lib/lang/sv.php +++ b/chat/lib/lang/sv.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Tid'; $lang['logsSearch'] = 'Sök'; $lang['logsPrivateChannels'] = 'Privata Kanaler'; $lang['logsPrivateMessages'] = 'Privata Meddelanden'; -?> diff --git a/chat/lib/lang/th.php b/chat/lib/lang/th.php index 1b0149d..2412bd6 100644 --- a/chat/lib/lang/th.php +++ b/chat/lib/lang/th.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'เวลา'; $lang['logsSearch'] = 'ค้นหา'; $lang['logsPrivateChannels'] = 'ห้องส่วนตัว'; $lang['logsPrivateMessages'] = 'ข้อความส่วนตัว'; -?> diff --git a/chat/lib/lang/tr.php b/chat/lib/lang/tr.php index 07709bb..4bf2336 100644 --- a/chat/lib/lang/tr.php +++ b/chat/lib/lang/tr.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Saat'; $lang['logsSearch'] = 'Ara'; $lang['logsPrivateChannels'] = 'Özel Kanallar'; $lang['logsPrivateMessages'] = 'Özel Mesajlar'; -?> diff --git a/chat/lib/lang/uk.php b/chat/lib/lang/uk.php index d8bb72e..ffb5391 100644 --- a/chat/lib/lang/uk.php +++ b/chat/lib/lang/uk.php @@ -124,4 +124,3 @@ $lang['logsTime'] = 'Час'; $lang['logsSearch'] = 'Пошук'; $lang['logsPrivateChannels'] = 'Приватні кімнати'; $lang['logsPrivateMessages'] = 'Приватні повідомлення'; -?> diff --git a/chat/lib/lang/zh-tw.php b/chat/lib/lang/zh-tw.php index 1224004..0eda611 100644 --- a/chat/lib/lang/zh-tw.php +++ b/chat/lib/lang/zh-tw.php @@ -123,4 +123,3 @@ $lang['logsTime'] = '時間'; $lang['logsSearch'] = '搜尋'; $lang['logsPrivateChannels'] = '私人房'; $lang['logsPrivateMessages'] = '悄悄話'; -?> diff --git a/chat/lib/lang/zh.php b/chat/lib/lang/zh.php index 18677e6..a742ad7 100644 --- a/chat/lib/lang/zh.php +++ b/chat/lib/lang/zh.php @@ -124,4 +124,3 @@ $lang['logsTime'] = '时间'; $lang['logsSearch'] = '搜索'; $lang['logsPrivateChannels'] = '私人频道'; $lang['logsPrivateMessages'] = '私人消息'; -?> @@ -62,7 +62,7 @@ Features - Separation of layout and code - Well commented Source Code - Developed with Security as integral part - built to prevent Code injections, SQL injections, Cross-site scripting (XSS), Session stealing and other attacks -- Tested successfully with Microsoft Internet Explorer, Mozilla Firefox, Opera and Safari - built to work with all modern browsers :) +- Tested successfully with Google Chrome, Firefox, Opera and Safari - built to work with all modern browsers :) |