Skip to content

Commit a10857c

Browse files
authored
feat: Title (#98)
* feat: add $title for use in blade (#95) * fix: form permissions fixed (#96) * fix: checkRights now accepts null as input * fix: form policies + config comment line formatting * fix: upload errors for ContentBlocks (#97)
1 parent 2374404 commit a10857c

File tree

16 files changed

+30
-13
lines changed

16 files changed

+30
-13
lines changed

config/app.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
// This file is published by the siteboss-framework package
4+
35
use Illuminate\Support\Facades\Facade;
46
use Illuminate\Support\ServiceProvider;
57

config/auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
//this file is published by the siteboss-framework package
3+
// This file is published by the siteboss-framework package
44

55
return [
66

config/clamav.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
//this file is published by the siteboss-framework package
3+
// This file is published by the siteboss-framework package
44

55
return [
66
/*

config/database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
//this file is published by the siteboss-framework package
3+
// This file is published by the siteboss-framework package
44

55
use Illuminate\Support\Str;
66

config/honeypot.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
//this file is published by the siteboss-framework package
3+
// This file is published by the siteboss-framework package
44

55
use NotFound\Framework\SpamResponder\SpamDetectedResponder;
66

config/indexer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
//this file is published by the siteboss-framework package
3+
// This file is published by the siteboss-framework package
44

55
return [
66

config/laravellocalization.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
// This file is published by the siteboss-framework package
4+
35
return [
46

57
// Uncomment the languages that your site supports - or add new ones.

config/openid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
//this file is published by the siteboss-framework package
3+
// This file is published by the siteboss-framework package
44

55
return [
66
/*

config/siteboss.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
//this file is published by the siteboss-framework package
3+
// This file is published by the siteboss-framework package
44

55
return [
66
/*

database/migrations/2021_10_27_182234_create_cms_upload_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function up()
1616
Schema::create('cms_upload', function (Blueprint $table) {
1717
$table->id();
1818
$table->integer('containerId')->nullable();
19-
$table->string('containerType', 8)->nullable();
19+
$table->string('containerType', 256)->nullable();
2020
$table->string('filename')->nullable();
2121
$table->string('mimetype', 128)->nullable();
2222
});

0 commit comments

Comments
 (0)