You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/08/14 11:18:55 UTC

svn commit: r685829 - /incubator/shindig/trunk/php/index.php

Author: chabotc
Date: Thu Aug 14 02:18:54 2008
New Revision: 685829

URL: http://svn.apache.org/viewvc?rev=685829&view=rev
Log:
SHINDIG-509 by Ruchi Kothari: openssl check is lacking in php module check

Modified:
    incubator/shindig/trunk/php/index.php

Modified: incubator/shindig/trunk/php/index.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/index.php?rev=685829&r1=685828&r2=685829&view=diff
==============================================================================
--- incubator/shindig/trunk/php/index.php (original)
+++ incubator/shindig/trunk/php/index.php Thu Aug 14 02:18:54 2008
@@ -20,7 +20,7 @@
 include_once ('config.php');
 
 // Basic sanity check if we have all required modules
-$modules = array('json', 'SimpleXML', 'libxml', 'curl');
+$modules = array('json', 'SimpleXML', 'libxml', 'curl', 'openssl');
 // if plain text tokens are disallowed we require mcrypt
 if (! Config::get('allow_plaintext_token')) {
 	$modules[] = 'mcrypt';