Hi,
ich habe eben das AddOn von Markus gefunden (http://www.pragmamx.org/modules.php?name=Downloads&op=view&lid=557), und habe probiert dieses mit folgendem Block Code zu kombinieren:
<?php
/**
* pragmaMx Content Management System
* Copyright (c) 2005 pragmaMx Dev Team - http://pragmaMx.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
if (!defined("mxMainFileLoaded")) die ("You can't access this file directly...");
$mxblockcache = false;
include("blocks/block-Newest_Users_M.php");
$out1 = $content;
unset($content);
include("blocks/block-Newest_Users_W.php");
$out2 = $content;
$content = "<table width=\"100%\"><tr>
<td width=\"50%\">".$out1."</td>
<td width=\"50%\">".$out2."</td>
</tr></table>";
$blockfiletitele = "Der Titel für den Block";
?>
Jedoch wird der block-Newest_Users_M.php auch noch ein zweitesmal vor dem block-Newest_Users_W.php geladen. Nur habe ich keine Idee warum. Kann da jemand helfen ?
LG