|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-06-11 23:55 UTC] ss23 at ss23 dot geek dot nz
[2013-07-31 04:08 UTC] yohgaki@php.net
-Status: Open
+Status: Assigned
-Assigned To:
+Assigned To: yohgaki
[2013-07-31 04:08 UTC] yohgaki@php.net
[2015-05-24 06:12 UTC] yohgaki@php.net
-Status: Assigned
+Status: Closed
[2015-05-24 06:12 UTC] yohgaki@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 19:00:01 2025 UTC |
Description: ------------ Currently, you can call crypt('foo') without any problems, however, given how useless that is for anything, it's a security risk if someone was actually to do this. Test script: --------------- <?php crypt('foo'); Expected result: ---------------- Warning: crypt() expects at least 2 parameters, 1 given Actual result: -------------- Works fine