Overview
Comment:Fix bug with continue and Smartyer
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 12b12876cd18d97615ca1907fcbcac123de824d45125299289616eece86cd2c8
User & Date: bohwaz on 2022-07-30 02:59:54
Other Links: manifest | tags
Context
2022-07-30
03:00
Refactor transaction create / edit forms as it was a mess check-in: da5557ec79 user: bohwaz tags: trunk
02:59
Fix bug with continue and Smartyer check-in: 12b12876cd user: bohwaz tags: trunk
02:59
Make selfcheck on save optional check-in: d448d04d38 user: bohwaz tags: trunk
Changes

Modified src/include/lib/Garradin/Template.php from [272eedb881] to [939b751f55].

1
2
3
4
5
6

7

8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

namespace Garradin;

use KD2\Form;
use KD2\HTTP;

use KD2\Translate;

use Garradin\Membres\Session;
use Garradin\Entities\Accounting\Account;
use Garradin\Entities\Users\Category;
use Garradin\UserTemplate\CommonModifiers;
use Garradin\Web\Render\Skriv;
use Garradin\Files\Files;

class Template extends \KD2\Smartyer
{
	static protected $_instance = null;

	static public function getInstance()
	{
		return self::$_instance ?: self::$_instance = new Template;
	}






>

>







|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

namespace Garradin;

use KD2\Form;
use KD2\HTTP;
use KD2\Smartyer;
use KD2\Translate;

use Garradin\Membres\Session;
use Garradin\Entities\Accounting\Account;
use Garradin\Entities\Users\Category;
use Garradin\UserTemplate\CommonModifiers;
use Garradin\Web\Render\Skriv;
use Garradin\Files\Files;

class Template extends Smartyer
{
	static protected $_instance = null;

	static public function getInstance()
	{
		return self::$_instance ?: self::$_instance = new Template;
	}