| 1 |
<?php |
<?php |
| 2 |
// $Id: coder_review_7x.inc,v 1.42 2009/10/18 13:35:57 snpower Exp $ |
// $Id: coder_review_7x.inc,v 1.43 2009/10/18 21:28:23 snpower Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 968 |
$ini = parse_ini_file($modulename .'.info'); |
$ini = parse_ini_file($modulename .'.info'); |
| 969 |
|
|
| 970 |
// Check if the dependency has been declared. |
// Check if the dependency has been declared. |
| 971 |
$dependency_declared = is_array($ini['dependencies']) ? in_array('block', $ini['dependencies']) : FALSE; |
$dependency_declared = (isset($ini['dependencies']) && is_array($ini['dependencies'])) ? in_array('block', $ini['dependencies']) : FALSE; |
| 972 |
|
|
| 973 |
if (file_exists($filename) && $modulename != 'block' && !$dependency_declared) { |
if (file_exists($filename) && $modulename != 'block' && !$dependency_declared) { |
| 974 |
if ($lines = file($filename)) { |
if ($lines = file($filename)) { |