- commit all outstanding changes

This commit is contained in:
james 2009-10-14 19:53:09 +00:00
parent 8737163202
commit 027c03b297
3 changed files with 15 additions and 8 deletions

View File

@ -461,7 +461,7 @@ if(is_array($nav)) {
echo "<li><h4 style=\"text-align: center;\">".i18n("Fundraising")."</h4></li>\n";
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising.php\">".i18n("Fundraising Dashboard").'</a></li>';
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising_setup.php\">".i18n("Fundraising Setup").'</a></li>';
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising_campaigns.php\">".i18n("Manage Appeal").'</a></li>';
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising_campaigns.php\">".i18n("Manage Appeals").'</a></li>';
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/donors.php\">".i18n("Manage Donors/Sponsors").'</a></li>';
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/reports.php?area=fundraising\">".i18n("Fundraising Reports").'</a></li>';
echo "</ul><br />\n";

View File

@ -53,7 +53,12 @@ UPDATE `reports_items` SET field = 'school_principal' WHERE field = 'school_cont
UPDATE `reports_items` SET field = 'school_phone' WHERE field = 'school_contactphone';
UPDATE `reports_items` SET field = 'school_email' WHERE field = 'school_contactemail';
UPDATE `reports` SET `desc` = 'List of all schools in the database. Name, address, principal and phone.' WHERE `reports`.`system_report_id` =35 ;
UPDATE `reports` SET `desc` = 'List of all schools in the database. Name, address, principal and phone.' WHERE `reports`.`system_report_id` =35;
ALTER TABLE `fundraising_donations` ADD `supporttype` VARCHAR( 255 ) NOT NULL;
ALTER TABLE `emails` CHANGE `type` `type` ENUM( 'system', 'user', 'fundraising' ) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT 'system';
ALTER TABLE `emails` ADD `fundraising_campaigns_id` INT UNSIGNED NULL DEFAULT NULL ,
ADD `lastsent` DATETIME NULL DEFAULT NULL;
ALTER TABLE `emails` ADD `bodyhtml` TEXT NULL DEFAULT NULL AFTER `body`;
ALTER TABLE `emails` DROP INDEX `val`;

View File

@ -38,7 +38,8 @@ input {
font-weight: bold;
text-align: center;
color: #FFFFFF;
background-color: #5C6F90;
/*background-color: #1B86B7; */
background-color: #1B86B7;
padding: 3px;
}
@ -82,7 +83,8 @@ input {
font-weight: bold;
text-align: left;
color: #FFFFFF;
background-color: #5C6F90;
/*background-color: #1B86B7; */
background-color: #1B86B7;
padding: 1px;
vertical-align: top;
}
@ -95,7 +97,7 @@ input {
font-size: 0.8em;
border: 0px;
border-collapse: collapse;
/* width: 100%;*/
width: 95%;
}
.editor td {
@ -106,7 +108,7 @@ input {
* so that the text is in the middle of the first line compared
* to an input box */
.editor td.label {
width: 25%;
/* width: 25%;*/
text-align: right;
/* padding-right: 5px;
padding-top: 5px;*/
@ -114,7 +116,7 @@ input {
}
.editor td.input {
width: 75%;
/* width: 75%;*/
text-align: left;
vertical-align: middle;
}
@ -123,7 +125,7 @@ input {
font-weight: bold;
text-align: left;
color: #FFFFFF;
background-color: #5C6F90;
background-color: #1B86B7;
padding: 1px;
vertical-align: top;
}