mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
-stop shadowing other people's tmp vars
This commit is contained in:
parent
7246640faf
commit
bdf05e9aab
2 changed files with 8 additions and 3 deletions
|
@ -30,6 +30,11 @@ ________________________________________________________________________
|
|||
+ clean-up and release the historic webchat code
|
||||
(in case you wondered what browsercap is.. it's there)
|
||||
|
||||
+ IRC-UX: catch when folks use #notation with native commands
|
||||
like +sub
|
||||
|
||||
+ IRC-UX: give users an informational NOTICE when redirecting
|
||||
|
||||
== XMPP MUC MOSTLY BROKEN ==============================================
|
||||
|
||||
* XMTUX sagt: and these scratchboard-messages and the "going down" messages are sent by this "special user", too
|
||||
|
|
|
@ -101,7 +101,7 @@ void sender_verification(string sourcehost, mixed targethost)
|
|||
|
||||
// gets called during socket logon
|
||||
int logon(int failure) {
|
||||
mixed t;
|
||||
mixed pappnose;
|
||||
sAuthHosts(([ ])); // reset authhosts
|
||||
legal_senders = ([ ]);
|
||||
instate = ([ "_INTERNAL_origin" : ME ]);
|
||||
|
@ -140,8 +140,8 @@ int logon(int failure) {
|
|||
unless(isServer()) {
|
||||
emit("|\n"); // initial greeting
|
||||
if (sizeof(verify_queue)) {
|
||||
foreach(t : verify_queue) {
|
||||
sender_verification(t[0], t[1]);
|
||||
foreach(pappnose : verify_queue) {
|
||||
sender_verification(pappnose[0], pappnose[1]);
|
||||
}
|
||||
verify_queue = ({ });
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue