remove double $$, fixes #552

This commit is contained in:
Michael Kaufmann (d00p)
2011-01-13 11:43:40 +00:00
parent 515e542179
commit f7b43f470f

View File

@@ -70,7 +70,7 @@ class phpinterface_fcgid
// set number of processes for one domain
if((int)$this->_domain['mod_fcgid_starter'] != - 1)
{
$starter_file.= "PHP_FCGI_CHILDREN=" . (int)$$this->_domain['mod_fcgid_starter'] . "\n";
$starter_file.= "PHP_FCGI_CHILDREN=" . (int)$this->_domain['mod_fcgid_starter'] . "\n";
}
else
{