*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:
slawkens
2017-08-23 17:00:41 +02:00
parent 55e8507cac
commit 45f988c420
187 changed files with 2065 additions and 133 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension');
if (\false) {
class AbstractExtension extends \Twig_Extension
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension_Core');
if (\false) {
class CoreExtension extends \Twig_Extension_Core
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension_Debug');
if (\false) {
class DebugExtension extends \Twig_Extension_Debug
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension_Escaper');
if (\false) {
class EscaperExtension extends \Twig_Extension_Escaper
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_ExtensionInterface');
if (\false) {
interface ExtensionInterface extends \Twig_ExtensionInterface
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension_GlobalsInterface');
if (\false) {
interface GlobalsInterface extends \Twig_Extension_ExtensionInterface
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension_InitRuntimeInterface');
if (\false) {
interface InitRuntimeInterface extends \Twig_Extension_InitRuntimeInterface
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension_Optimizer');
if (\false) {
class OptimizerExtension extends \Twig_Extension_Optimizer
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension_Profiler');
if (\false) {
class ProfilerExtension extends \Twig_Extension_Profiler
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension_Sandbox');
if (\false) {
class SandboxExtension extends \Twig_Extension_Sandbox
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension_Staging');
if (\false) {
class StagingExtension extends \Twig_Extension_Staging
{
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Twig\Extension;
class_exists('Twig_Extension_StringLoader');
if (\false) {
class StringLoaderExtension extends \Twig_Extension_StringLoader
{
}
}