Skip to content

Commit a270a92

Browse files
Merge pull request chriskacerguis#306 from rajanbalana/master
Added semicolon on line 296
2 parents 1d5bb6b + c84c79e commit a270a92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application/libraries/REST_Controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ public function __construct()
292292

293293
// only allow ajax requests
294294
if (!$this->input->is_ajax_request() and config_item('rest_ajax_only')) {
295-
$response = array('status' => false, 'error' => 'Only AJAX requests are accepted.')
295+
$response = array('status' => false, 'error' => 'Only AJAX requests are accepted.');
296296
$this->response($response, 406); // Set status to 406 NOT ACCEPTABLE
297297
}
298298

0 commit comments

Comments
 (0)