Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.2.4] [FIX] ACL allows access to forbidden resources #1305

Merged
merged 5 commits into from Sep 28, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
issue-1261.phpt requires openssl
(cherry picked from commit 7dce086)
  • Loading branch information
sjinks committed Sep 27, 2013
commit 5166a0b74ac76f16f2bb16c12da8d6bd0ca2bf27
7 changes: 6 additions & 1 deletion ext/tests/issue-1261.phpt
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
--TEST--
Ability to restrict the maximum password length for Phalcon\Security::checkHash() - https://github.com/phalcon/cphalcon/pull/1261
--SKIPIF--
<?php include('skipif.inc'); ?>
<?php
include('skipif.inc');
if (!extension_loaded('openssl')) {
die('skip openssl extension is not available');
}
?>
--FILE--
<?php
$s = new \Phalcon\Security();
Expand Down