Przeglądaj źródła

Added logic to match unlabelled abstract fields

main
Simon Bowie 3 lat temu
rodzic
commit
69027eda64
1 zmienionych plików z 7 dodań i 2 usunięć
  1. +7
    -2
      site/solr.php

+ 7
- 2
site/solr.php Wyświetl plik

@@ -116,8 +116,13 @@ function random_record (){
$output['title'] = $title[1];

// Search for the abstract in the content element and display it
preg_match('/Abstract.*\n(.*)\n/', $content, $abstract);
$output['abstract'] = $abstract[1];
if (preg_match('/Abstract.*\n(.*)\n/', $content, $abstract)){
$output['abstract'] = $abstract[1];
}
else {
preg_match('/\(.\) \\n\\n(.*)\\n/', $content, $abstract);
$output['abstract'] = $abstract[1];
}

return $output;


Ładowanie…
Anuluj
Zapisz