
Did not tried it yet tough.
Don,t know if I'll ever do.

When I see this: 11 pages of discussions regarding this Calendar

Sounds like it is a highly popular feature.
Hoping Oliver to come up with a fully integrated solution soon...
Cheers,
Yes, that would be niceStudioZ wrote:Kosse, your hack sounds good.
Did not tried it yet tough.
Don,t know if I'll ever do.
When I see this: 11 pages of discussions regarding this Calendar![]()
Sounds like it is a highly popular feature.
Hoping Oliver to come up with a fully integrated solution soon...
Cheers,
Code: Select all
switch($_SESSION["wysiwyg_editor"]) {
Code: Select all
switch($_SESSION["WYSIWYG_EDITOR"])
Code: Select all
//load FCKeditor
case 2:
include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = stripslashes($values['description']) ;
$oFCKeditor->CreateFCKeditor( 'description', '100%', '350' ) ;
break;
Code: Select all
//load FCKeditor
case 2:
include(PHPWCMS_ROOT."/include/inc_ext/FCKeditor2/fckeditor.php");
$oFCKeditor = new FCKeditor('description');
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Width = '436';
$oFCKeditor->Height = '400';
$oFCKeditor->Value = stripslashes($values['description']) ;
$oFCKeditor->BasePath = '/include/inc_ext/FCKeditor2/' ;
$oFCKeditor->Create('description') ;
break;
Code: Select all
<td valign="top" class="v10"><?php echo html_specialchars(strip_tags($article["article_summary"])); ?>
Code: Select all
<td valign="top" class="v10"><?php echo strip_tags($article["article_summary"]); ?></td>
Code: Select all
function get_ordinal_day($ord, $nthday, $evtime)
{
$currenttime=$evtime;
$i=0;
while ($i<$nthday) {
if ($ord==date("w", $currenttime)) $i++;
if ($i<$nthday) {
$currentarray=explode("-", date("Y-m-d", $currenttime));
$currenttime=mktime(0,0,0,$currentarray[1], $currentarray[2]+1, $currentarray[0]);
}
}
return $currenttime;
}
Code: Select all
$prefix = "cms__";
Code: Select all
CREATE TABLE `cms__phpwcms....
Code: Select all
INSERT INTO `cms__phpwcms