diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2014-01-15 19:03:29 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2014-01-15 19:03:29 +0100 |
commit | fa51a0a2e3ce4ec4a82a5d2f53fbd50cfcb16528 (patch) | |
tree | c7e8326aec8b19edbb82c1a7be678bb5bffdbfec /buildscripts/index | |
parent | ae49488b23722b4e56b18b0492da2f855119d1ae (diff) |
Removed ?> from buildscripts and demos
Diffstat (limited to 'buildscripts/index')
-rw-r--r-- | buildscripts/index/build.php | 2 | ||||
-rw-r--r-- | buildscripts/index/quickstart_index.php | 1 | ||||
-rw-r--r-- | buildscripts/index/search.php | 4 |
3 files changed, 1 insertions, 6 deletions
diff --git a/buildscripts/index/build.php b/buildscripts/index/build.php index bbe151e6..a2e57286 100644 --- a/buildscripts/index/build.php +++ b/buildscripts/index/build.php @@ -61,5 +61,3 @@ else { echo "Usage: 'php build.php quickstart' or 'php build.php api'\n"; } - -?> diff --git a/buildscripts/index/quickstart_index.php b/buildscripts/index/quickstart_index.php index 61e21514..5df0f549 100644 --- a/buildscripts/index/quickstart_index.php +++ b/buildscripts/index/quickstart_index.php @@ -104,4 +104,3 @@ class quickstart_index echo "\nSaving search index ({$count}) to {$this->_dir}\n\n"; } } -?>
\ No newline at end of file diff --git a/buildscripts/index/search.php b/buildscripts/index/search.php index 23948ca5..ff83e629 100644 --- a/buildscripts/index/search.php +++ b/buildscripts/index/search.php @@ -11,7 +11,7 @@ require_once('Zend/Search/Lucene.php'); if($keyword!=='') { - $search=new Zend_Search_Lucene(realpath(dirname(__FILE__))); + $search=new Zend_Search_Lucene(realpath(dirname(__FILE__))); $results=$search->find(strtolower($keyword)); $content=''; foreach($results as $entry) @@ -32,5 +32,3 @@ $page=preg_replace('/<!-- content begin -->.*<!-- content end -->/ms',$content,$ if($keyword!=='') $page=preg_replace('/<input type="text" name="keyword"/','<input type="text" name="keyword" value="'.htmlentities($keyword).'"',$page); echo $page; - -?>
\ No newline at end of file |