From 17d73a4e357513e64dd9bc1478ad18ac024cd7c6 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Mon, 10 Jun 2013 16:39:49 -0500 Subject: [PATCH] AES: use ()'s for require_once All other require_once's use them so for consistency this one ought to too --- phpseclib/Crypt/AES.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpseclib/Crypt/AES.php b/phpseclib/Crypt/AES.php index 4ebf07e5..616c362e 100644 --- a/phpseclib/Crypt/AES.php +++ b/phpseclib/Crypt/AES.php @@ -66,7 +66,7 @@ * Include Crypt_Rijndael */ if (!class_exists('Crypt_Rijndael')) { - require_once 'Rijndael.php'; + require_once('Rijndael.php'); } /**#@+