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
2b8bdc0c
Commit
2b8bdc0c
authored
May 03, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(dashboard, widgets) cleanup system_log.widget.php
parent
865b51da
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
52 deletions
+48
-52
system_log.widget.php
src/www/widgets/widgets/system_log.widget.php
+48
-52
No files found.
src/www/widgets/widgets/system_log.widget.php
View file @
2b8bdc0c
...
...
@@ -46,25 +46,21 @@ if(is_numeric($_POST['logfiltercount'])) {
}
?>
<input
type=
"hidden"
id=
"system_log-config"
name=
"system_log-config"
value=
""
/>
<div
id=
"system_log-settings"
class=
"widgetconfigdiv"
style=
"display:none;"
>
<form
action=
"/widgets/widgets/system_log.widget.php"
method=
"post"
name=
"iform"
>
<table
class=
"table table-striped"
summary=
"system_log widget
"
>
<table
class=
"table table-striped
"
>
<tr>
<td>
<?=
gettext
(
"Number of Log lines to display"
);
?>
:
</td>
<td>
<select
name=
"logfiltercount"
id=
"logfiltercount"
>
<?php
for
(
$i
=
1
;
$i
<=
50
;
$i
++
)
{
?>
<option
value=
"
<?php
echo
$i
;
?>
"
<?php
if
(
$syslogEntriesToFetch
==
$i
)
{
echo
"selected=
\"
selected
\"
"
;}
?>
>
<?php
echo
$i
;
?>
</option>
<?php
}
?>
</select>
</td>
<td>
<input
id=
"submit"
name=
"submit"
type=
"submit"
class=
"btn btn-primary formbtn"
value=
"
<?=
gettext
(
'Save'
)
?>
"
autocomplete=
"off"
>
</td>
</tr>
</table>
</form>
...
...
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