Commit a193b82826f62411d23769c3e5b3fc3f6e895f51

Authored by Kevin G Fourie
1 parent 21c142ad

Fixed syntax error. "public" access identifier may only be used in the scope of a class.

Committed By: Kevin Fourie
Reviewed By: Megan Watson
search2/indexing/indexers/PHPLuceneIndexer.inc.php
... ... @@ -299,7 +299,8 @@ class PHPLuceneIndexer extends Indexer
299 299 }
300 300 }
301 301  
302   - public function isDocumentIndexed($documentId){
  302 + function isDocumentIndexed($documentId)
  303 + {
303 304 // do something
304 305 }
305 306 ?>
306 307 \ No newline at end of file
... ...