| 1 |
<?php |
<?php |
| 2 |
/* $Id: macros.inc,v 1.5 2004/03/18 17:31:56 mathias Exp $ */ |
/* $Id: macros.inc,v 1.6 2004/03/18 17:35:09 mathias Exp $ */ |
| 3 |
|
|
| 4 |
/* Use this space to write your own custom macrotags. */ |
/* Use this space to write your own custom macrotags. */ |
| 5 |
|
|
| 312 |
|
|
| 313 |
if (db_num_rows($result) == 0) { |
if (db_num_rows($result) == 0) { |
| 314 |
// No node with exact title found, try substring. |
// No node with exact title found, try substring. |
| 315 |
$result = db_query("SELECT n.*, u.name, u.uid FROM {node} n INNER JOIN {users} u ON n.uid = u.uid WHERE n.title LIKE '%". check_query($title) ."%' AND n.status = 1 ORDER BY n.created DESC"); |
$result = db_query("SELECT n.*, u.name, u.uid FROM {node} n INNER JOIN {users} u ON n.uid = u.uid WHERE n.title LIKE '%". db_escape_string($title) ."%' AND n.status = 1 ORDER BY n.created DESC"); |
| 316 |
} |
} |
| 317 |
|
|
| 318 |
if (db_num_rows($result) == 0 && module_exist("search")) { |
if (db_num_rows($result) == 0 && module_exist("search")) { |