mirror of
https://github.com/xevidos/codiad.git
synced 2025-03-11 11:08:58 +01:00
Fixed 500 error on project controller, Updated updater, Added Live auto complete to default settings.
This commit is contained in:
parent
f982941047
commit
1387c71608
3 changed files with 873 additions and 787 deletions
|
@ -17,7 +17,7 @@ require_once('./class.project.php');
|
||||||
checkSession();
|
checkSession();
|
||||||
|
|
||||||
$Project = new Project();
|
$Project = new Project();
|
||||||
$Project->projects = $this->get_projects();
|
$Project->projects = $Project->get_projects();
|
||||||
|
|
||||||
if( $_GET['action'] == 'add_user' ) {
|
if( $_GET['action'] == 'add_user' ) {
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,10 @@
|
||||||
class Settings {
|
class Settings {
|
||||||
|
|
||||||
const DEFAULT_OPTIONS = array(
|
const DEFAULT_OPTIONS = array(
|
||||||
|
array(
|
||||||
|
"name" => "codiad.editor.autocomplete",
|
||||||
|
"value" => "false",
|
||||||
|
),
|
||||||
array(
|
array(
|
||||||
"name" => "codiad.editor.fileManagerTrigger",
|
"name" => "codiad.editor.fileManagerTrigger",
|
||||||
"value" => "false",
|
"value" => "false",
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue