1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-26 17:54:39 +02:00

Various bits and pieces ... this isn't really what I wanted M-2 to look like but hum ho

git-svn-id: file:///svn/phpbb/trunk@4441 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2003-08-27 16:32:44 +00:00
parent 6225256418
commit 7d7a08eee6
11 changed files with 299 additions and 240 deletions

View File

@@ -33,7 +33,6 @@ include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$user->start();
$auth->acl($user->data);
$user->setup();
@@ -64,7 +63,7 @@ switch ($mode)
}
$start = (isset($_GET['start'])) ? intval($_GET['start']) : 0;
$start = (isset($_GET['start'])) ? intval($_GET['start']) : ((isset($_GET['page'])) ? (intval($_GET['page']) - 1) * $config['topics_per_page'] : 0);
$form = (!empty($_GET['form'])) ? htmlspecialchars($_GET['form']) : 0;
$field = (isset($_GET['field'])) ? htmlspecialchars($_GET['field']) : 'username';
@@ -205,6 +204,8 @@ switch ($mode)
set_config('jab_password', $jabber->password);
}
$jabber->SendPresence();
// This _really_ needs to be an "email" template I think ... indeed the whole system is probably
// best suited "merged" with email in some way. Would enable notifications, etc. to be sent via
// Jabber more easily too I think