aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--css/businessadmin.css8
-rw-r--r--install/index.php6
2 files changed, 7 insertions, 7 deletions
diff --git a/css/businessadmin.css b/css/businessadmin.css
index e2c714a..2d656d1 100644
--- a/css/businessadmin.css
+++ b/css/businessadmin.css
@@ -20,23 +20,23 @@
@font-face {
font-family: Ubuntu;
- src: url('/BusinessAdmin/fonts/Ubuntu-R.ttf');
+ src: url('../fonts/Ubuntu-R.ttf');
}
@font-face {
font-family: Ubuntu;
font-style: italic;
- src: url('/BusinessAdmin/fonts/Ubuntu-RI.ttf');
+ src: url('../fonts/Ubuntu-RI.ttf');
}
@font-face {
font-family: Ubuntu;
font-weight: bold;
- src: url('/BusinessAdmin/fonts/Ubuntu-B.ttf');
+ src: url('../fonts/Ubuntu-B.ttf');
}
@font-face {
font-family: Ubuntu;
font-style: italic;
font-weight: bold;
- src: url('/BusinessAdmin/fonts/Ubuntu-BI.ttf');
+ src: url('../fonts/Ubuntu-BI.ttf');
}
/********************** Do not edit below this line **********************/
diff --git a/install/index.php b/install/index.php
index 990c6eb..953187c 100644
--- a/install/index.php
+++ b/install/index.php
@@ -89,9 +89,9 @@ if (isset($_GET['create_tables'])) {
$_pdo->query("CREATE TABLE IF NOT EXISTS `".Constants::db_prefix."offer` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`contactId` smallint(5) unsigned NOT NULL,
- `start_date` date NOT NULL,
- `end_date` date NOT NULL,
- `invoice_date` date NOT NULL,
+ `start_date` date DEFAULT NULL,
+ `end_date` date DEFAULT NULL,
+ `invoice_date` date DEFAULT NULL,
`accepted` tinyint(1) unsigned NOT NULL DEFAULT '0',
`invoice_fileId` smallint(5) unsigned DEFAULT NULL,
`payment_key` varchar(63) DEFAULT NULL,