WebGUI 3.5.2 release
This commit is contained in:
parent
19fa8be10f
commit
81da4fe3af
6 changed files with 12 additions and 9 deletions
|
|
@ -1,9 +1,4 @@
|
||||||
create table webguiVersion (
|
insert into webguiVersion values ('3.5.2','intitial install',unix_timestamp());
|
||||||
webguiVersion varchar(10),
|
|
||||||
versionType varchar(30),
|
|
||||||
dateApplied int
|
|
||||||
);
|
|
||||||
insert into webguiVersion values ('3.5.1','intitial install',unix_timestamp());
|
|
||||||
|
|
||||||
# MySQL dump 8.14
|
# MySQL dump 8.14
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
create table webguiVersion (
|
||||||
|
webguiVersion varchar(10),
|
||||||
|
versionType varchar(30),
|
||||||
|
dateApplied int
|
||||||
|
);
|
||||||
|
insert into webguiVersion values ('3.5.1','intitial install',unix_timestamp());
|
||||||
|
|
||||||
# MySQL dump 8.14
|
# MySQL dump 8.14
|
||||||
#
|
#
|
||||||
# Host: localhost Database: WebGUI
|
# Host: localhost Database: WebGUI
|
||||||
|
|
|
||||||
1
docs/upgrades/upgrade_3.5.1-3.5.2.sql
Normal file
1
docs/upgrades/upgrade_3.5.1-3.5.2.sql
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
insert into webguiVersion values ('3.5.2','upgrade',unix_timestamp());
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
package WebGUI;
|
package WebGUI;
|
||||||
our $VERSION = "3.5.1";
|
our $VERSION = "3.5.2";
|
||||||
|
|
||||||
#-------------------------------------------------------------------
|
#-------------------------------------------------------------------
|
||||||
# WebGUI is Copyright 2001-2002 Plain Black Software.
|
# WebGUI is Copyright 2001-2002 Plain Black Software.
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@ sub www_search {
|
||||||
$p = WebGUI::Paginator->new(WebGUI::URL::page('op=search'),\@row,20);
|
$p = WebGUI::Paginator->new(WebGUI::URL::page('op=search'),\@row,20);
|
||||||
$output .= WebGUI::International::get(365).'<p><ol>';
|
$output .= WebGUI::International::get(365).'<p><ol>';
|
||||||
$output .= $p->getPage($session{form}{pn});
|
$output .= $p->getPage($session{form}{pn});
|
||||||
$output .= '</ol>'.$p->getBarTradiational($session{form}{pn});
|
$output .= '</ol>'.$p->getBarTraditional($session{form}{pn});
|
||||||
} else {
|
} else {
|
||||||
$output .= WebGUI::International::get(366);
|
$output .= WebGUI::International::get(366);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -629,7 +629,7 @@ sub www_view {
|
||||||
}
|
}
|
||||||
$sth->finish;
|
$sth->finish;
|
||||||
unless ($flag) {
|
unless ($flag) {
|
||||||
$output .= '<tr><td class="tableData" colspan="3">'.
|
$head .= '<tr><td class="tableData" colspan="3">'.
|
||||||
WebGUI::International::get(19,$namespace).'</td></tr>';
|
WebGUI::International::get(19,$namespace).'</td></tr>';
|
||||||
}
|
}
|
||||||
$p = WebGUI::Paginator->new($url,\@row,$data{paginateAfter});
|
$p = WebGUI::Paginator->new($url,\@row,$data{paginateAfter});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue