| 1 |
<?php |
<?php |
| 2 |
/* $Id: blog_reactions.module,v 1.1.2.24 2009/03/30 08:52:04 sanduhrs Exp $ */ |
/* $Id: blog_reactions.module,v 1.1.2.25 2009/03/30 08:58:09 sanduhrs Exp $ */ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* Blog reactions |
* Blog reactions |
| 197 |
*/ |
*/ |
| 198 |
function blog_reactions_item_exists($item) { |
function blog_reactions_item_exists($item) { |
| 199 |
$brid = $item->brid; |
$brid = $item->brid; |
| 200 |
$href = $item->href; |
$href = $item->link['href']; |
| 201 |
$result_brid = db_result(db_query_range("SELECT COUNT(brid) as count FROM {blog_reactions} WHERE brid='%s'", $brid, 0, 1)); |
$result_brid = db_result(db_query_range("SELECT COUNT(brid) as count FROM {blog_reactions} WHERE brid='%s'", $brid, 0, 1)); |
| 202 |
$result_href = db_result(db_query_range("SELECT COUNT(brid) as count FROM {blog_reactions} WHERE href='%s'", $href, 0, 1)); |
$result_href = db_result(db_query_range("SELECT COUNT(brid) as count FROM {blog_reactions} WHERE href='%s'", $href, 0, 1)); |
| 203 |
$result = $result_brid || $result_href; |
$result = $result_brid || $result_href; |