| 1 |
<?php |
<?php |
| 2 |
// $Id: nodereference.module,v 1.39.2.40 2008/09/04 23:01:27 yched Exp $ |
// $Id: nodereference.module,v 1.39.2.41 2008/09/17 09:12:29 yched Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 456 |
return array(); |
return array(); |
| 457 |
} |
} |
| 458 |
|
|
| 459 |
if (isset($string)) { |
if ($string !== '') { |
| 460 |
$string_clause = $exact_string ? " AND n.title = '%s'" : " AND n.title LIKE '%%%s%'"; |
$string_clause = $exact_string ? " AND n.title = '%s'" : " AND n.title LIKE '%%%s%'"; |
| 461 |
$related_clause = "(". $related_clause .")". $string_clause; |
$related_clause = "(". $related_clause .")". $string_clause; |
| 462 |
$args[] = $string; |
$args[] = $string; |