Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
040f6c19
Commit
040f6c19
authored
Jul 20, 2016
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src: style sweep
(cherry picked from commit
2e8ebcb5
)
parent
58e371d2
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
0 additions
and
19 deletions
+0
-19
services.php
src/opnsense/mvc/app/config/services.php
+0
-1
services_api.php
src/opnsense/mvc/app/config/services_api.php
+0
-1
NetworkinsightController.php
...ers/OPNsense/Diagnostics/Api/NetworkinsightController.php
+0
-1
SystemhealthController.php
...llers/OPNsense/Diagnostics/Api/SystemhealthController.php
+0
-1
SettingsController.php
...c/app/controllers/OPNsense/IDS/Api/SettingsController.php
+0
-2
SettingsController.php
...app/controllers/OPNsense/Proxy/Api/SettingsController.php
+0
-1
LDAP.php
src/opnsense/mvc/app/library/OPNsense/Auth/LDAP.php
+0
-2
Backend.php
src/opnsense/mvc/app/library/OPNsense/Core/Backend.php
+0
-1
Config.php
src/opnsense/mvc/app/library/OPNsense/Core/Config.php
+0
-4
Shell.php
src/opnsense/mvc/app/library/OPNsense/Core/Shell.php
+0
-1
BaseModel.php
src/opnsense/mvc/app/models/OPNsense/Base/BaseModel.php
+0
-2
BaseField.php
...nse/mvc/app/models/OPNsense/Base/FieldTypes/BaseField.php
+0
-1
MenuSystem.php
...opnsense/mvc/app/models/OPNsense/Base/Menu/MenuSystem.php
+0
-1
No files found.
src/opnsense/mvc/app/config/services.php
View file @
040f6c19
...
...
@@ -147,5 +147,4 @@ $di->set('router', function () {
$router
->
handle
();
return
$router
;
});
src/opnsense/mvc/app/config/services_api.php
View file @
040f6c19
...
...
@@ -149,7 +149,6 @@ $di->set('router', function () {
$router
->
handle
();
return
$router
;
});
// exception handling
...
...
src/opnsense/mvc/app/controllers/OPNsense/Diagnostics/Api/NetworkinsightController.php
View file @
040f6c19
...
...
@@ -272,6 +272,5 @@ class NetworkinsightController extends ApiControllerBase
}
else
{
return
""
;
}
}
}
src/opnsense/mvc/app/controllers/OPNsense/Diagnostics/Api/SystemhealthController.php
View file @
040f6c19
...
...
@@ -200,7 +200,6 @@ class SystemhealthController extends ApiControllerBase
}
return
([
"from"
=>
$from_timestamp
,
"to"
=>
$to_timestamp
,
"full_range"
=>
$full_range
,
"data"
=>
$archives
]);
}
/**
...
...
src/opnsense/mvc/app/controllers/OPNsense/IDS/Api/SettingsController.php
View file @
040f6c19
...
...
@@ -203,7 +203,6 @@ class SettingsController extends ApiControllerBase
}
else
{
return
array
();
}
}
/**
...
...
@@ -263,7 +262,6 @@ class SettingsController extends ApiControllerBase
}
}
return
$result
;
}
/**
...
...
src/opnsense/mvc/app/controllers/OPNsense/Proxy/Api/SettingsController.php
View file @
040f6c19
...
...
@@ -88,7 +88,6 @@ class SettingsController extends ApiControllerBase
}
return
$result
;
}
/**
...
...
src/opnsense/mvc/app/library/OPNsense/Auth/LDAP.php
View file @
040f6c19
...
...
@@ -104,7 +104,6 @@ class LDAP implements IAuthConnector
if
(
!
array_key_exists
(
$attrName
,
$this
->
ldapSearchAttr
))
{
$this
->
ldapSearchAttr
[]
=
$attrName
;
}
}
/**
...
...
@@ -323,6 +322,5 @@ class LDAP implements IAuthConnector
}
return
false
;
}
}
}
src/opnsense/mvc/app/library/OPNsense/Core/Backend.php
View file @
040f6c19
...
...
@@ -155,6 +155,5 @@ class Backend
}
else
{
return
0
;
}
}
}
src/opnsense/mvc/app/library/OPNsense/Core/Config.php
View file @
040f6c19
...
...
@@ -82,7 +82,6 @@ class Config extends Singleton
}
return
true
;
}
/**
...
...
@@ -350,7 +349,6 @@ class Config extends Singleton
$dom
->
loadXML
(
$dom
->
saveXML
());
return
$dom
->
saveXML
();
}
/**
...
...
@@ -530,7 +528,5 @@ class Config extends Singleton
}
else
{
throw
new
ConfigException
(
"Unable to lock config"
);
}
}
}
src/opnsense/mvc/app/library/OPNsense/Core/Shell.php
View file @
040f6c19
...
...
@@ -59,7 +59,6 @@ class Shell
// init, set simulation mode / debug autoput
$this
->
simulate
=
FactoryDefault
::
getDefault
()
->
get
(
'config'
)
->
globals
->
simulate_mode
;
$this
->
debug
=
FactoryDefault
::
getDefault
()
->
get
(
'config'
)
->
globals
->
debug
;
}
/**
...
...
src/opnsense/mvc/app/models/OPNsense/Base/BaseModel.php
View file @
040f6c19
...
...
@@ -190,7 +190,6 @@ abstract class BaseModel
$internal_data
->
addChildNode
(
$xmlNode
->
getName
(),
$fieldObject
);
}
}
}
/**
...
...
@@ -371,7 +370,6 @@ abstract class BaseModel
$this
->
internalData
->
addToXMLNode
(
$xml
->
xpath
(
$this
->
internal_mountpoint
)[
0
]);
return
$xml
;
}
/**
...
...
src/opnsense/mvc/app/models/OPNsense/Base/FieldTypes/BaseField.php
View file @
040f6c19
...
...
@@ -241,7 +241,6 @@ abstract class BaseField
// not found
return
null
;
}
}
...
...
src/opnsense/mvc/app/models/OPNsense/Base/Menu/MenuSystem.php
View file @
040f6c19
...
...
@@ -121,7 +121,6 @@ class MenuSystem
));
}
unset
(
$ifarr
);
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment