Home
last modified time | relevance | path

Searched refs:user (Results 1 – 15 of 15) sorted by relevance

/web-master/entry/
H A Duser-note.php13 function validateUser($user) { argument
14 $ret = filter_var($user, FILTER_VALIDATE_EMAIL);
18 $ret = filter_var($user, FILTER_SANITIZE_STRIPPED, FILTER_FLAG_STRIP_HIGH);
25 $user = filter_input(INPUT_POST, "user", FILTER_CALLBACK, ["filter" => FILTER_CAL… variable
31 if (empty($user) || empty($note) || empty($sect) || !$ip)
90 "User : $user\n" .
105 if (db_query_safe($query, [$user, $note, $sect])) {
141 if (!$user) $user = "php-general@lists.php.net"; variable
143 $user = str_replace(' ','',$user); variable
144 …mail($mailto,"note $new_id added to $sect",$msg,"From: $user\r\nMessage-ID: <note-$new_id@php.net>…
/web-master/fetch/
H A Duser-notes.php38 $user = $row['user']; variable
40 if ($user != "php-general@lists.php.net" && $user != "user@example.com") {
41 if (preg_match("!(.+)@(.+)\.(.+)!", $user)) {
42 $user = str_replace(['@', '.'], [' at ', ' dot '], $user); variable
45 $user = ''; variable
48 echo "$row[id]|$row[sect]|$row[rate]|$row[ts]|$user|",
H A Duser-notes-rss.php75 …<dc:creator><?php echo htmlspecialchars(preg_replace('/.@./','*@*',$note['user'])); ?></dc:creator>
/web-master/manage/
H A Dgithub.php43 $user = github_api('/user?access_token='.urlencode($access_token));
45 die('Failed to get current user');
84 $user = github_current_user($gh['access_token']);
86 …$endpoint = '/teams/'.urlencode((string)GITHUB_PHP_OWNER_TEAM_ID).'/members/'.urlencode($user->log…
93 …echo '<h1>You (Authenticated GitHub user: '.htmlentities($user->login). ') are no member of the ph…
129 $user = $_SESSION['github']['current_user'];
132 <p><b>GitHub user: </b> <?php echo htmlentities($user->login); ?></p>
H A Dchallenge-response.php23 "where username=? and not isnull(id)", [$user]);
46 <h1>Addresses in quarantine for <?php echo hsc($user); ?>@php.net</h1>
87 " where username=?", [$user]);
H A Duser-notes.php888 function note_mail_on_action($user, $id, $subject, $body) argument
890 …mail(NOTES_MAIL, $subject, $body, "From: $user@php.net\r\nIn-Reply-To: <note-$id@php.net>", "-f{$u…
894 function allow_mass_change($user) argument
897 $user,
/web-master/include/
H A Dcvs-auth.inc11 function verify_password($user, $pass)
15 $res = db_query_safe("SELECT svnpasswd FROM users WHERE cvsaccess AND username = ?", [$user]);
19 return gen_svn_pass($user, $pass) === $row["svnpasswd"];
25 function verify_username($user) {
27 $res = db_query_safe("SELECT 1 FROM users WHERE cvsaccess AND username = ?", [$user]);
H A Dlogin.inc24 if (isset($_POST["user"], $_POST["pw"])) {
25 list($cuser, $cpw) = [$_POST['user'], $_POST['pw']];
30 // Login form, if the user is not yet logged in
40 if (!empty($_POST['user'])) {
41 $cuser = hsc($_POST['user']);
57 <td><input type="text" name="user" value="<?php echo $cuser;?>" />@php.net
101 // Set a cookie to tell various .php.net services that the user is probably logged in
H A Dfunctions.inc315 /* Notify the user */
341 /* Notify the user */
363 function is_admin($user) {
404 return in_array($user, $admins);
432 return in_array($user, $admins);
437 if (is_admin($user)) return true;
440 $res = db_query_safe($query, [$userid, $user, $user]);
444 function fetch_user($user) {
445 if ((int)$user) {
448 [$user]);
[all …]
/web-master/
H A Dnote.sql4 /* TODO: the user stuff should be linked to the users table so people could
10 master.php.net/entry/user-note.php
11 master.php.net/entry/user-notes-vote.php
12 master.php.net/fetch/user-notes.php
13 master.php.net/manage/user-notes.php
19 user varchar(80) default NULL,
31 -- New votes table added for keeping track of user notes ratings
H A Dforgot.php7 $user = isset($_REQUEST['user']) ? $_REQUEST['user'] : false; variable
67 elseif ($user) {
68 $res = db_query_safe("SELECT * FROM users WHERE username = ?", [$user]);
103 <p class="warning">There's nobody named <?php echo hsc($user)?> around here. Perhaps you need to co…
113 <input type="text" id="user" name="user" value="<?php echo hsc($user)?>" />
H A Dusers.sql1 /* user-related tables */
11 crypted password for each user. the password is crypted using the
16 /* a user will be able to change the email address associated with
21 /* dns_allow states whether or not a user gets a <username>.people.php.net hostname.
53 /* the user_note table just contains notes about each user. */
63 /* the users_profile table contains up to one profile row for each user */
H A DREADME.md1 PHP user management system
18 # Create user test:test
/web-master/scripts/
H A Dupdate-user-notes28 /* get user notes */
63 list($id,$sect,$rate,$ts,$user,$note,$up,$down) = explode("|",$line);
82 fputs($nf, "$id|$sect|$rate|$ts|$user|" . base64_encode($note) . "|$up|$down\n");
84 fputs($bz, "$id|$sect|$rate|$ts|$user|" . base64_encode($note) . "|$up|$down\n");
/web-master/.phan/internal_stubs/
H A Dmysql.phan_php23 * "ini.sql.safe-mode", this parameter is ignored and the name of the user that
71 * The username. Default value is the name of the user that owns the
151 * if the user does not have permission to access the table(s) referenced by

Completed in 19 milliseconds