Merge branch 'master' of github.com:ajaxorg/ace
This commit is contained in:
commit
c2af3ed374
3 changed files with 7 additions and 1 deletions
|
|
@ -59,6 +59,9 @@ var _define = function(module, deps, payload) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (arguments.length == 2)
|
||||
payload = deps;
|
||||
|
||||
if (!define.modules)
|
||||
define.modules = {};
|
||||
|
||||
|
|
|
|||
|
|
@ -55,6 +55,9 @@ var _define = function(module, deps, payload) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (arguments.length == 2)
|
||||
payload = deps;
|
||||
|
||||
if (!_define.modules)
|
||||
_define.modules = {};
|
||||
|
||||
|
|
|
|||
|
|
@ -449,7 +449,7 @@ var PhpHighlightRules = function() {
|
|||
);
|
||||
|
||||
var builtinVariables = lang.arrayToMap(
|
||||
('$_GLOBALS|$_SERVER|$_GET|$_POST|$_FILES|$_REQUEST|$_SESSION|$_ENV|$_COOKIE|$php_errormsg|$HTTP_RAW_POST_DATA|' +
|
||||
('$GLOBALS|$_SERVER|$_GET|$_POST|$_FILES|$_REQUEST|$_SESSION|$_ENV|$_COOKIE|$php_errormsg|$HTTP_RAW_POST_DATA|' +
|
||||
'$http_response_header|$argc|$argv').split('|')
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue