Commit:    9c14e7fa9cae6b83aca1669301198965c1b45ecc
Author:    Ferenc Kovacs <[email protected]>         Fri, 25 Oct 2013 03:04:38 
+0200
Parents:   896655fbb3c450c3e0de5c2db880c6045db6b525
Branches:  master

Link:       
http://git.php.net/?p=web/bugs.git;a=commitdiff;h=9c14e7fa9cae6b83aca1669301198965c1b45ecc

Log:
the function declaration already contains the references

Changed paths:
  M  www/login.php


Diff:
diff --git a/www/login.php b/www/login.php
index dc3611c..54aa1a2 100644
--- a/www/login.php
+++ b/www/login.php
@@ -14,7 +14,7 @@ response_header('Login');
 if (isset($_POST['user'])) {
   $referer = $_POST['referer'];
   
-  bugs_authenticate (&$user, &$pwd, &$logged_in, &$user_flags);
+  bugs_authenticate($user, $pwd, $logged_in, $user_flags);
 
   if ($logged_in === 'developer') {
        if (!empty($_POST['referer']) &&


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to