diff options
author | Colin Fleming <cj_fleming@sky.com> | 2014-09-23 23:44:47 +0100 |
---|---|---|
committer | Colin Fleming <cj_fleming@sky.com> | 2014-09-23 23:44:47 +0100 |
commit | 17834973e2d88a118f3322fcb974ae692d386ce2 (patch) | |
tree | 513f053b40d04955af1292af9b9eb21bb966e05a /config/filemgr | |
parent | 15516c35954279dd04d1cc8a852f8107a1564673 (diff) | |
download | pfsense-packages-17834973e2d88a118f3322fcb974ae692d386ce2.tar.gz pfsense-packages-17834973e2d88a118f3322fcb974ae692d386ce2.tar.bz2 pfsense-packages-17834973e2d88a118f3322fcb974ae692d386ce2.zip |
Update font used by File Manager
Change font from Arial/Helvetica to Tahoma
Update PHP shorthand
Align version numbers correctly
Diffstat (limited to 'config/filemgr')
-rw-r--r-- | config/filemgr/filemgr.xml | 2 | ||||
-rw-r--r-- | config/filemgr/rbfminc/file_editor_style.css | 5 | ||||
-rw-r--r-- | config/filemgr/rbfminc/rename.tmp | 5 |
3 files changed, 6 insertions, 6 deletions
diff --git a/config/filemgr/filemgr.xml b/config/filemgr/filemgr.xml index 5c44ba13..c2a7ac42 100644 --- a/config/filemgr/filemgr.xml +++ b/config/filemgr/filemgr.xml @@ -31,7 +31,7 @@ <requirements>none</requirements> <faq>https://forum.pfsense.org/index.php/topic,26974.0.html</faq> <name>File Manager</name> - <version>0.1.2</version> + <version>0.1.4</version> <title>Settings</title> <include_file>/usr/local/pkg/filemgr.inc</include_file> <menu> diff --git a/config/filemgr/rbfminc/file_editor_style.css b/config/filemgr/rbfminc/file_editor_style.css index 93b34ca7..df026a5f 100644 --- a/config/filemgr/rbfminc/file_editor_style.css +++ b/config/filemgr/rbfminc/file_editor_style.css @@ -2,8 +2,7 @@ /* CSS Document */ body,td,th { - font-family: Arial, Helvetica, sans-serif; - + font-family: Tahoma, sans-serif; color: #000000; } @@ -100,7 +99,7 @@ img { border-left: 1px solid #666666; margin: 0px; padding: 0px; - font: 11px Arial, Helvetica, sans-serif; + font: 11px Tahoma, sans-serif; } .column1 { margin: 0px; diff --git a/config/filemgr/rbfminc/rename.tmp b/config/filemgr/rbfminc/rename.tmp index 285e19d1..266e38d4 100644 --- a/config/filemgr/rbfminc/rename.tmp +++ b/config/filemgr/rbfminc/rename.tmp @@ -6,14 +6,15 @@ if($user_login == 'ok'){ include "functions.php"; -?><html> +?> +<html> <head> <title>Rename</title> </head> <body> <script type="text/javascript"> //<![CDATA[ -<? +<?php //print_r($_POST); if($_POST['o'] != $_POST['n']){ if(@rename($_POST['cf'].$_POST['o'], $_POST['cf'].$_POST['n'])){ |