function biblio_bibtex_check_md5 in Bibliography Module 6.2
Same name and namespace in other branches
- 7 modules/bibtexParse/biblio_bibtex.module \biblio_bibtex_check_md5()
- 7.2 modules/bibtexParse/biblio_bibtex.module \biblio_bibtex_check_md5()
1 call to biblio_bibtex_check_md5()
- _biblio_bibtex_import in modules/
bibtexParse/ biblio_bibtex.module
File
- modules/
bibtexParse/ biblio_bibtex.module, line 450
Code
function biblio_bibtex_check_md5($md5) {
static $bibtex_md5s = array();
if (empty($bibtex_md5s)) {
$result = db_query("SELECT * FROM {biblio_bibtex} ");
while ($row = db_fetch_object($result)) {
$bibtex_md5s[$row->biblio_bibtex_md5] = $row->nid;
}
}
if (isset($bibtex_md5s[$md5])) {
return $bibtex_md5s[$md5];
}
else {
$bibtex_md5s[$md5] = TRUE;
// gaurd against duplicates in the same import
return;
}
}