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
223ca102
Commit
223ca102
authored
Apr 01, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small fix get_notices_xmlrpc
parent
90bb8714
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
legacy.inc
src/etc/inc/xmlrpc/legacy.inc
+6
-2
No files found.
src/etc/inc/xmlrpc/legacy.inc
View file @
223ca102
...
@@ -49,11 +49,15 @@ function xmlrpc_publishable_legacy()
...
@@ -49,11 +49,15 @@ function xmlrpc_publishable_legacy()
* @param $params
* @param $params
* @return mixed
* @return mixed
*/
*/
function
get_notices_xmlrpc
(
$category
)
function
get_notices_xmlrpc
(
$category
=
null
)
{
{
if
(
!
function_exists
(
"get_notices"
))
{
if
(
!
function_exists
(
"get_notices"
))
{
require_once
(
"notices.inc"
);
require_once
(
"notices.inc"
);
}
}
return
get_notices
(
$category
);
if
(
$category
==
null
)
{
return
get_notices
();
}
else
{
return
get_notices
(
$category
);
}
}
}
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