Overview
Comment:Fix access to content.css when access to website is not allowed
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0662a80e28fa4b88abbd6be63e3cb6bfff84bbdae759d3c5dfe01282408d10ca
User & Date: bohwaz on 2022-02-07 23:15:13
Other Links: manifest | tags
Context
2022-02-08
00:08
Fix PHP 8.1 errors check-in: 4389c3dcc4 user: bohwaz tags: trunk
2022-02-07
23:15
Fix access to content.css when access to website is not allowed check-in: 0662a80e28 user: bohwaz tags: trunk
22:54
Add ability to link a fee to a project, fix [fde0ebd9e938a3496720c1974dcd2d0f47275c5f] check-in: 900e9cdb36 user: bohwaz tags: trunk
Changes

Modified src/www/admin/web/css.php from [31cfe203b8] to [6239ccc079].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

/**
 * This file is an alias to /content.css basically,
 * but it is required for when WWW_URL is on a different domain than ADMIN_URL
 */

namespace Garradin;

use Garradin\Web\Skeleton;

require_once __DIR__ . '/_inc.php';

$s = new Skeleton('content.css');
$s->serve();











|



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

/**
 * This file is an alias to /content.css basically,
 * but it is required for when WWW_URL is on a different domain than ADMIN_URL
 */

namespace Garradin;

use Garradin\Web\Skeleton;

require_once __DIR__ . '/../_inc.php';

$s = new Skeleton('content.css');
$s->serve();