Author: chabotc
Date: Wed Dec 3 15:25:55 2008
New Revision: 723130
URL: http://svn.apache.org/viewvc?rev=723130&view=rev
Log:
SHINDIG-727 by Erik Gomersbach - rsa_private_key not initialised in
SigningFetcherFactory
Modified:
incubator/shindig/trunk/php/src/gadgets/SigningFetcherFactory.php
Modified: incubator/shindig/trunk/php/src/gadgets/SigningFetcherFactory.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/gadgets/SigningFetcherFactory.php?rev=723130&r1=723129&r2=723130&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/gadgets/SigningFetcherFactory.php (original)
+++ incubator/shindig/trunk/php/src/gadgets/SigningFetcherFactory.php Wed Dec
3 15:25:55 2008
@@ -44,6 +44,7 @@
public function __construct($keyFile = null) {
$this->keyName = 'http://' . $_SERVER["HTTP_HOST"] .
Config::get('web_prefix') . '/public.cer';
if (! empty($keyFile)) {
+ $rsa_private_key = false;
$privateKey = null;
try {
if (File::exists($keyFile)) {