mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-14 09:44:55 +02:00
*some fixes
* fixed installing samples when for example Rook Sample already exist and other samples not * fixed some mysql error when character you trying to create already exist * fixed signature fonts finding path * removed DEFAULT '' for TEXT field. It didn't worked under some systems like MAC OS X. * moved news adding at installation from schema.sql to finish.php * removed some unused cities field from myaac_spells table * some optimizations
This commit is contained in:
11
system/libs/twig/Cache/CacheInterface.php
Executable file
11
system/libs/twig/Cache/CacheInterface.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Cache;
|
||||
|
||||
class_exists('Twig_CacheInterface');
|
||||
|
||||
if (\false) {
|
||||
interface CacheInterface extends \Twig_CacheInterface
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Cache/FilesystemCache.php
Executable file
11
system/libs/twig/Cache/FilesystemCache.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Cache;
|
||||
|
||||
class_exists('Twig_Cache_Filesystem');
|
||||
|
||||
if (\false) {
|
||||
class FilesystemCache extends \Twig_Cache_Filesystem
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Cache/NullCache.php
Executable file
11
system/libs/twig/Cache/NullCache.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Cache;
|
||||
|
||||
class_exists('Twig_Cache_Null');
|
||||
|
||||
if (\false) {
|
||||
class NullCache extends \Twig_Cache_Null
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user