merging 6.5.6 bugfixes
This commit is contained in:
parent
cd83598f7c
commit
a58f2786f7
15 changed files with 207 additions and 88 deletions
|
|
@ -12,11 +12,11 @@ sub makeUrlCompliant {
|
|||
my $value = shift;
|
||||
$value =~ s/\s+$//; #removes trailing whitespace
|
||||
$value =~ s/^\s+//; #removes leading whitespace
|
||||
$value =~ s/^\\//; #removes leading slash
|
||||
$value =~ s/ /-/g; #replaces whitespace with hyphens
|
||||
$value =~ s/\.$//; #removes trailing period
|
||||
$value =~ s/[^A-Za-z0-9\-\.\_\/]//g; #removes all funky characters
|
||||
$value =~ s/^\///; #removes a preceeding /
|
||||
$value =~ s/^\///; #removes a leading /
|
||||
$value =~ s/\/$//; #removes a trailing /
|
||||
$value =~ s/\/\//\//g; #removes double /
|
||||
return $value;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1945,8 +1945,8 @@ You also cannot import a theme from a version of WebGUI that is newer than the o
|
|||
},
|
||||
|
||||
'988' => {
|
||||
message => q|Are you certain you wish to delete this database link? The following items are using this link and will no longer work if you delete it:|,
|
||||
lastUpdated => 1056151382
|
||||
message => q|Are you certain you wish to delete this database link?|,
|
||||
lastUpdated => 1116151382
|
||||
},
|
||||
|
||||
'35' => {
|
||||
|
|
@ -3289,11 +3289,6 @@ You can search users based on username and email address. You can do partial sea
|
|||
lastUpdated => 1052850265
|
||||
},
|
||||
|
||||
'989' => {
|
||||
message => q|on page|,
|
||||
lastUpdated => 1056151382
|
||||
},
|
||||
|
||||
'1071' => {
|
||||
message => q|Env HTTP Host|,
|
||||
lastUpdated => 1066641511
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue