Commit a193b82826f62411d23769c3e5b3fc3f6e895f51
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
Showing
1 changed file
with
2 additions
and
1 deletions
search2/indexing/indexers/PHPLuceneIndexer.inc.php
| @@ -299,7 +299,8 @@ class PHPLuceneIndexer extends Indexer | @@ -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 | // do something | 304 | // do something |
| 304 | } | 305 | } |
| 305 | ?> | 306 | ?> |
| 306 | \ No newline at end of file | 307 | \ No newline at end of file |