Your ROOT_URL in app.ini is https://code.exacti.com.br/ but you are visiting https://git.exacti.com.br/ExacTI/phacil-framework/src/commit/d91f6e36431faeaff6ac613086139a81a5eec432/system/templateEngines/smarty/sysplugins/smarty_undefined_variable.php You should set ROOT_URL correctly, otherwise the web may not work correctly.
A super easy PHP Framework for web development! https://github.com/exacti/phacil-framework

33 lines
572 B

<?php
/**
* class for undefined variable object
* This class defines an object for undefined variable handling
*
* @package Smarty
* @subpackage Template
*/
class Smarty_Undefined_Variable extends Smarty_Variable
{
/**
* Returns null for not existing properties
*
* @param string $name
*
* @return null
*/
public function __get($name)
{
return null;
}
/**
* Always returns an empty string.
*
* @return string
*/
public function __toString()
{
return '';
}
}