Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F773405
in-portal
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Feb 2, 10:06 AM
Size
22 KB
Mime Type
text/x-diff
Expires
Tue, Feb 4, 10:06 AM (2 h, 20 m)
Engine
blob
Format
Raw Data
Handle
556634
Attached To
rINP In-Portal
in-portal
View Options
Index: trunk/kernel/admin/include/toolbar/theme_general.php
===================================================================
--- trunk/kernel/admin/include/toolbar/theme_general.php (nonexistent)
+++ trunk/kernel/admin/include/toolbar/theme_general.php (revision 1037)
@@ -0,0 +1,31 @@
+<?php
+
+print<<<END
+<script language="javascript1.2">
+<!--
+
+function align_primary_value () {
+ if (document.getElementById('primary_prompt').checked) {
+ document.getElementById('primary').value = 1;
+ document.getElementById('enabled_prompt').checked = true;
+ document.getElementById('enabled').value = 1;
+ } else {
+ document.getElementById('primary').value = 0;
+ }
+}
+
+function align_enabled_value() {
+ if (document.getElementById('enabled_prompt').checked) {
+ document.getElementById('enabled').value = 1;
+ } else {
+ document.getElementById('enabled').value = 0;
+ document.getElementById('primary_prompt').checked = false;
+ document.getElementById('primary').value = 0;
+ }
+}
+
+//-->
+</script>
+
+END;
+?>
Property changes on: trunk/kernel/admin/include/toolbar/theme_general.php
___________________________________________________________________
Added: cvs2svn:cvs-rev
## -0,0 +1 ##
+1.1
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: trunk/admin/include/toolbar.js
===================================================================
--- trunk/admin/include/toolbar.js (revision 1036)
+++ trunk/admin/include/toolbar.js (revision 1037)
@@ -1,405 +1,406 @@
<?php
//***********************************
//***********************************
//The dropdown menu
//***********************************
function int_view_init()
{
global $section, $pathtoroot, $envar, $g_status, $n_categories_articles, $n_categories, $n_articles, $n_cat_filter, $n_article_filter, $n_lead_article, $n_archived_article, $n_pending_article, $n_disabled_article, $n_pending_category, $n_disabled_category, $n_category_sort, $n_category_sortby, $n_article_sort, $n_article_sortby, $n_article_perpage;
if ($g_status == 'cut' || $g_status == 'copy')
$pasteval = "true";
else
$pasteval = "false";
// Select viewing categories or articles
if ($n_categories_articles == "1")
$n_categories = 1;
if ($n_categories_articles == "2")
$n_articles = 1;
if ($n_categories_articles == "3")
{ $n_articles = 1;
$n_categories = 1;
}
// Article filter
if ($n_lead_article == 1)
$n_article_filter .= " AND LeadStory=1";
if ($n_archived_article == 1)
$n_article_filter .= " AND Archived=1";
if ($n_pending_article == 1)
$n_article_filter .= " AND Pending=1";
if ($n_disabled_article == 1)
$n_article_filter .= " AND Visible=0";
// Category filter
if ($n_pending_category == 1)
$n_cat_filter .= " AND Pending=1";
if ($n_disabled_category == 1)
$n_cat_filter .= " AND Visible=0";
// Sorting
$varname = "n_category_sort_" . $n_category_sort;
$$varname = 1;
$varname = "n_category_sortby_" . $n_category_sortby;
$$varname = 1;
$varname = "n_article_sort_" . $n_article_sort;
$$varname = 1;
$varname = "n_article_sortby_" . $n_article_sortby;
$$varname = 1;
$varname = "n_article_perpage_" . $n_article_perpage;
$$varname = 1;
print <<<END
<script language="JavaScript">
<!--
function n_categories_articles(val){
document.viewmenu.fieldname.value = "n_categories_articles";
document.viewmenu.varvalue.value = val;
document.viewmenu.submit();
}
function n_filter(fieldnum, val){
var field;
switch(fieldnum){
case 1:
field = "n_lead_article";
break;
case 2:
field = "n_archived_article";
break;
case 3:
field = "n_pending_article";
break;
case 4:
field = "n_pending_category";
break;
case 5:
field = "n_disabled_article";
break;
case 6:
field = "n_disabled_category";
break;
}
document.viewmenu.fieldname.value = "n_serval";
document.viewmenu.varvalue.value = field;
if (val == 1)
document.viewmenu.varvalue2.value = "0";
else
document.viewmenu.varvalue2.value = "1";
document.viewmenu.submit();
}
function n_cat_sort(val){
var field;
switch(val){
case 1:
field = "asc";
break;
case 2:
field = "desc";
break;
}
document.viewmenu.fieldname.value = "n_setval";
document.viewmenu.varvalue.value = "n_category_sort";
document.viewmenu.varvalue2.value = field;
document.viewmenu.submit();
}
function n_cat_sortby(val){
var field;
switch(val){
case 1:
field = "Name";
break;
case 2:
field = "Description";
break;
case 3:
field = "Priority";
break;
}
document.viewmenu.fieldname.value = "n_setval";
document.viewmenu.varvalue.value = "n_category_sortby";
document.viewmenu.varvalue2.value = field;
document.viewmenu.submit();
}
function n_article_sort(val){
var field;
switch(val){
case 1:
field = "asc";
break;
case 2:
field = "desc";
break;
}
document.viewmenu.fieldname.value = "n_setval";
document.viewmenu.varvalue.value = "n_article_sort";
document.viewmenu.varvalue2.value = field;
document.viewmenu.submit();
}
function n_article_sortby(val){
var field;
switch(val){
case 1:
field = "Title";
break;
case 2:
field = "Author";
break;
case 3:
field = "Priority";
break;
}
document.viewmenu.fieldname.value = "n_setval";
document.viewmenu.varvalue.value = "n_article_sortby";
document.viewmenu.varvalue2.value = field;
document.viewmenu.submit();
}
function n_article_perpage(val){
document.viewmenu.fieldname.value = "n_setval";
document.viewmenu.varvalue.value = "n_article_perpage";
document.viewmenu.varvalue2.value = val;
document.viewmenu.submit();
}
var userchecks = [];
function adduserchecks(val){
userchecks[userchecks.length] = val;
}
function select(val){
if (val == 1 || val == 2)
for(i=0; i<newschecks.length; i++)
{
ob = document.getElementById(newschecks[i]);
ob.all[0].checked = true;
usenews_add(ob);
}
if (val == 1 || val == 3)
for(i=0; i<catchecks.length; i++)
{
ob = document.getElementById(catchecks[i]);
ob.all[1].checked = true;
usecat_add(ob);
}
}
function unselect(){
for(i=0; i<newschecks.length; i++)
{
ob = document.getElementById(newschecks[i]);
if (ob.all[0].checked)
{ ob.all[0].checked = false;
usenews_sub(ob);
}
}
for(i=0; i<catchecks.length; i++)
{
ob = document.getElementById(catchecks[i]);
if (ob.all[1].checked)
{ ob.all[1].checked = false;
usecat_sub(ob);
}
}
}
function invert(){
for(i=0; i<catchecks.length; i++)
{
ob = document.getElementById(catchecks[i]);
if (ob.all[1].checked)
{ ob.all[1].checked = false;
usecat_sub(ob);
}
else
{ ob.all[1].checked = true;
usecat_add(ob);
}
}
for(i=0; i<newschecks.length; i++)
{
ob = document.getElementById(newschecks[i]);
if (ob.all[0].checked)
{ ob.all[0].checked = false;
usenews_sub(ob);
}
else
{ ob.all[0].checked = true;
usenews_add(ob);
}
}
}
function fwLoadMenus() {
if (window.fw_menu_0) return;
window.fw_menu_0_1 = new Menu("Filter",150,19,"",11,"#000000","#000000","#f0f1eb","#e0e0da");
fw_menu_0_1.addMenuItem("Leading Articles","location='javascript:n_filter(1,$n_lead_article);'","$n_lead_article");
fw_menu_0_1.addMenuItem("Archived Articles","location='javascript:n_filter(2,$n_archived_article);'","$n_archived_article");
fw_menu_0_1.addMenuSeparator();
fw_menu_0_1.addMenuItem("Pending Articles","location='javascript:n_filter(3,$n_pending_article);'","$n_pending_article");
fw_menu_0_1.addMenuItem("Pending Categories","location='javascript:n_filter(4,$n_pending_category);'","$n_pending_category");
fw_menu_0_1.addMenuSeparator();
fw_menu_0_1.addMenuItem("Disabled Articles","location='javascript:n_filter(5,$n_disabled_article);'","$n_disabled_article");
fw_menu_0_1.addMenuItem("Disabled Categories","location='javascript:n_filter(6,$n_disabled_category);'","$n_disabled_category");
fw_menu_0_1.fontWeight="normal";
fw_menu_0_1.hideOnMouseOut=true;
window.fw_menu_0_2_1 = new Menu("Categories",105,19,"",11,"#000000","#000000","#f0f1eb","#e0e0da");
fw_menu_0_2_1.addMenuItem("Ascending","location='javascript:n_cat_sort(1);'","$n_category_sort_asc");
fw_menu_0_2_1.addMenuItem("Descending","location='javascript:n_cat_sort(2);'","$n_category_sort_desc");
fw_menu_0_2_1.addMenuSeparator();
fw_menu_0_2_1.addMenuItem("Name","location='javascript:n_cat_sortby(1);'","$n_category_sortby_Name");
fw_menu_0_2_1.addMenuItem("Description","location='javascript:n_cat_sortby(2);'","$n_category_sortby_Description");
fw_menu_0_2_1.addMenuItem("Priority","location='javascript:n_cat_sortby(3);'","$n_category_sortby_Priority");
fw_menu_0_2_1.fontWeight="normal";
fw_menu_0_2_1.hideOnMouseOut=true;
window.fw_menu_0_2_2 = new Menu("Articles",105,19,"",11,"#000000","#000000","#f0f1eb","#e0e0da");
fw_menu_0_2_2.addMenuItem("Ascending","location='javascript:n_article_sort(1);'","$n_article_sort_asc");
fw_menu_0_2_2.addMenuItem("Descending","location='javascript:n_article_sort(2);'","$n_article_sort_desc");
fw_menu_0_2_2.addMenuSeparator();
fw_menu_0_2_2.addMenuItem("Title","location='javascript:n_article_sortby(1);'","$n_article_sortby_Title");
fw_menu_0_2_2.addMenuItem("Author","location='javascript:n_article_sortby(2);'","$n_article_sortby_Author");
fw_menu_0_2_2.addMenuItem("Priority","location='javascript:n_article_sortby(3);'","$n_article_sortby_Priority");
fw_menu_0_2_2.fontWeight="normal";
fw_menu_0_2_2.hideOnMouseOut=true;
window.fw_menu_0_2 = new Menu("Sorting",100,19,"",11,"#000000","#000000","#f0f1eb","#e0e0da");
fw_menu_0_2.addMenuItem(fw_menu_0_2_1,"","");
fw_menu_0_2.addMenuItem(fw_menu_0_2_2,"","");
fw_menu_0_2.fontWeight="normal";
fw_menu_0_2.hideOnMouseOut=true;
fw_menu_0_2.childMenuIcon="images/arrows.gif";
window.fw_menu_0_3 = new Menu("Results per Page",55,19,"",11,"#000000","#000000","#f0f1eb","#e0e0da");
fw_menu_0_3.addMenuItem("10","location='javascript:n_article_perpage(10);'","$n_article_perpage_10");
fw_menu_0_3.addMenuItem("20","location='javascript:n_article_perpage(20);'","$n_article_perpage_20");
fw_menu_0_3.addMenuItem("50","location='javascript:n_article_perpage(50);'","$n_article_perpage_50");
fw_menu_0_3.addMenuItem("100","location='javascript:n_article_perpage(100);'","$n_article_perpage_100");
fw_menu_0_3.fontWeight="normal";
fw_menu_0_3.hideOnMouseOut=true;
window.fw_menu_0_4 = new Menu("Select",115,19,"",11,"#000000","#000000","#f0f1eb","#e0e0da");
fw_menu_0_4.addMenuItem("All","javascript:select(1);","");
fw_menu_0_4.addMenuItem("All Articles","javascript:select(2);","");
fw_menu_0_4.addMenuItem("All Categories","javascript:select(3);","");
fw_menu_0_4.addMenuItem("Unselect","javascript:unselect();","");
fw_menu_0_4.addMenuItem("Invert","javascript:invert();","");
fw_menu_0_4.fontWeight="normal";
fw_menu_0_4.hideOnMouseOut=true;
window.fw_menu_0 = new Menu("root",135,19,"",11,"#000000","#000000","#f0f1eb","#e0e0da");
fw_menu_0.addMenuItem("Categories","location='javascript:n_categories_articles(1);'","$n_categories");
fw_menu_0.addMenuItem("Articles","location='javascript:n_categories_articles(2);'","$n_articles");
fw_menu_0.addMenuSeparator();
fw_menu_0.addMenuItem(fw_menu_0_1);
fw_menu_0.addMenuItem(fw_menu_0_2);
fw_menu_0.addMenuItem(fw_menu_0_3);
fw_menu_0.addMenuItem(fw_menu_0_4);
fw_menu_0.fontWeight="normal";
fw_menu_0.hideOnMouseOut=true;
fw_menu_0.childMenuIcon="images/arrows.gif";
fw_menu_0.writeMenus();
} // fwLoadMenus()
//-->
</script>
<script language="JavaScript1.2" src="include/fw_menu.js"></script>
<script language="Javascript">
<!--
var userchecked = 0;
var edit_ = false;
var delete_ = false;
var approve_ = false;
var addgroup_ = false;
function user_add(el){
userchecked++;
tool_perm();
el.name = el.className;
el.className = 'selection';
}
function user_sub(el){
userchecked--;
tool_perm();
el.className = el.name;
}
function check_edit(){
if (userchecked != 0)
{
document.listform.action='adduser.php?$envar';
document.listform.submit();
}
}
+
END;
if ($section == 'in-portal:user_list')
print<<<END
function tool_perm(){
//edit/move button
//if ((edit && moveup && movedown) != null)
if (edit != null)
{
if (userchecked == 0)
{
edit.src = '$pathtoroot' + 'admin/images/' + "tool_edit_2.gif";
approve.src = '$pathtoroot' + 'admin/images/' + "tool_approve_2.gif";
del.src = '$pathtoroot' + 'admin/images/' + "tool_del_2.gif";
adduser.src = '$pathtoroot' + 'admin/images/' + "tool_adduser_2.gif";
edit_ = false;
delete_ = false;
approve_ = false;
addgroup_ = false;
}
else
{
edit.src = '$pathtoroot' + 'admin/images/' + "tool_edit.gif";
approve.src = '$pathtoroot' + 'admin/images/' + "tool_approve.gif";
del.src = '$pathtoroot' + 'admin/images/' + "tool_del.gif";
adduser.src = '$pathtoroot' + 'admin/images/' + "tool_adduser.gif";
edit_ = true;
delete_ = true;
approve_ = true;
addgroup_ = true;
}
}
}
END;
else
print<<<END
function tool_perm(){
}
END;
print<<<END
//-->
</script>
END;
}
?>
\ No newline at end of file
Property changes on: trunk/admin/include/toolbar.js
___________________________________________________________________
Modified: cvs2svn:cvs-rev
## -1 +1 ##
-1.2
\ No newline at end of property
+1.3
\ No newline at end of property
Index: trunk/admin/config/addtheme.php
===================================================================
--- trunk/admin/config/addtheme.php (revision 1036)
+++ trunk/admin/config/addtheme.php (revision 1037)
@@ -1,255 +1,257 @@
<?php
##############################################################
##In-portal ##
##############################################################
## In-portal ##
## Intechnic Corporation ##
## All Rights Reserved, 1998-2002 ##
## ##
## No portion of this code may be copied, reproduced or ##
## otherwise redistributed without proper written ##
## consent of Intechnic Corporation. Violation will ##
## result in revocation of the license and support ##
## privileges along maximum prosecution allowed by law. ##
##############################################################
if(!strlen($pathtoroot))
{
$path=dirname(realpath(__FILE__));
if(strlen($path))
{
/* determine the OS type for path parsing */
$pos = strpos($path,":");
if ($pos === false)
{
$gOS_TYPE="unix";
$pathchar = "/";
}
else
{
$gOS_TYPE="win";
$pathchar="\\";
}
$p = $path.$pathchar;
/*Start looking for the root flag file */
while(!strlen($pathtoroot) && strlen($p))
{
$sub = substr($p,strlen($pathchar)*-1);
if($sub==$pathchar)
{
$filename = $p."root.flg";
}
else
$filename = $p.$pathchar."root.flg";
if(file_exists($filename))
{
$pathtoroot = $p;
}
else
{
$parent = realpath($p.$pathchar."..".$pathchar);
if($parent!=$p)
{
$p = $parent;
}
else
$p = "";
}
}
if(!strlen($pathtoroot))
$pathtoroot = ".".$pathchar;
}
else
{
$pathtoroot = ".".$pathchar;
}
}
$sub = substr($pathtoroot,strlen($pathchar)*-1);
if($sub!=$pathchar)
{
$pathtoroot = $pathtoroot.$pathchar;
}
//echo $pathtoroot;
//print_r($_GET);
//print_r($_POST);
require_once($pathtoroot."kernel/startup.php");
//admin only util
/* set the destination of the image upload, relative to the root path */
$DestDir = "kernel/images/";
$rootURL="http://".ThisDomain().$objConfig->Get("Site_Path");
$admin = $objConfig->Get("AdminDirectory");
if(!strlen($admin))
$admin = "admin";
$localURL=$rootURL."kernel/";
$adminURL = $rootURL.$admin;
$imagesURL = $adminURL."/images";
$browseURL = $adminURL."/browse";
$pathtolocal = $pathtoroot."kernel/";
require_once ($pathtoroot.$admin."/include/elements.php");
require_once ($pathtoroot."kernel/admin/include/navmenu.php");
require_once ($pathtolocal."admin/include/navmenu.php");
require_once($pathtoroot.$admin."/browse/toolbar.php");
require_once($pathtoroot.$admin."/listview/listview.php");
$m = GetModuleArray();
foreach($m as $key=>$value)
{
$path = $pathtoroot. $value."admin/include/parser.php";
if(file_exists($path))
{
include_once($path);
}
}
unset($objEditItems);
$objEditItems = new clsThemeList();
$objEditItems->SourceTable = $objSession->GetEditTable("Theme");
$objEditItems->EnablePaging = FALSE;
if ($_GET["new"] == 1)
{
$c = new clsTheme(NULL);
$en = 0;
$action = "m_theme_add";
$name = prompt_language("la_Text_NewTheme");
$objThemes->CreateEmptyEditTable("ThemeId");
}
else
{
$en = (int)$_GET["en"];
if (isset($_POST["itemlist"]))
{
$objThemes->CopyToEditTable("ThemeId",$_POST["itemlist"]);
}
$objEditItems->Query_Item("SELECT * FROM ".$objEditItems->SourceTable);
$itemcount=$objEditItems->NumItems();
$c = $objEditItems->GetItemByIndex($en);
if($itemcount>1)
{
if ($en+1 == $itemcount)
$en_next = -1;
else
$en_next = $en+1;
if ($en == 0)
$en_prev = -1;
else
$en_prev = $en-1;
}
$action = "m_theme_edit";
$name = $c->Get("Name");
}
$section = "in-portal:theme_general";
$envar = "env=".BuildEnv();
$title = GetTitle("la_Text_Theme", "la_tab_General", $c->Get('ThemeId'), $c->Get('Name'));//prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Theme")." -'".$name."'";
//Display header
$sec = $objSections->GetSection($section);
$objCatToolBar = new clsToolBar();
$objCatToolBar->Add("img_save", "la_Save","#","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","edit_submit('theme','ThemeEditStatus','".$admin."/config/config_theme.php',1);","/toolbar/tool_select.gif");
$objCatToolBar->Add("img_cancel", "la_Cancel","#","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","edit_submit('theme','ThemeEditStatus','".$admin."/config/config_theme.php',2);",$imagesURL."/toolbar/tool_cancel.gif");
if ( isset($en_prev) || isset($en_next) )
{
$url = $RootUrl.$admin."/config/addtheme.php";
$StatusField = "ThemeEditStatus";
$form = "theme";
MultiEditButtons($objCatToolBar,$en_next,$en_prev,$form,$StatusField,$url,$sec->Get("OnClick"));
$objCatToolBar->Add("divider");
}
int_header($objCatToolBar,NULL,$title);
$c->Data=inp_htmlize($c->Data);
if ($objSession->GetVariable("HasChanges") == 1) {
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
<tr>
<td valign="top">
<?php int_hint_red(admin_language("la_Warning_Save_Item")); ?>
</td>
</tr>
</table>
<?php } ?>
<FORM enctype="multipart/form-data" ID="theme" NAME="theme" method="POST" ACTION="">
<TABLE cellSpacing="0" cellPadding="2" width="100%" class="tableborder">
<?php int_subsection_title(prompt_language("la_tab_General")); ?>
<TR <?php int_table_color(); ?> >
<TD><?php echo prompt_language("la_prompt_ThemeId"); ?></TD>
<TD><?php echo $c->Get("ThemeId"); ?></TD>
<TD></TD>
</TR>
<TR <?php int_table_color(); ?> >
<TD><SPAN id="prompt_name" CLASS="text"><?php echo prompt_language("la_prompt_Name"); ?></SPAN></TD>
<TD><input type=text ValidationType="theme_name" NAME="name" VALUE="<?php echo $c->Get("Name"); ?>" maxlength="16"></TD>
<TD></TD>
</TR>
<TR <?php int_table_color(); ?> >
<TD><SPAN id="prompt_description"><?php echo prompt_language("la_prompt_Description"); ?></SPAN></TD>
<TD><input type=text NAME="description" VALUE="<?php echo $c->Get("Description"); ?>"></TD>
<TD></TD>
</TR>
<tr <?php int_table_color(); ?>>
<td valign="top" class="text"><?php echo prompt_language("la_prompt_Enabled"); ?></td>
<td>
- <input type="checkbox" name="enabled" class="text" value="1" <?php if($c->Get("Enabled") == 1) echo "checked"; ?>>
+ <input type="checkbox" id="enabled_prompt" name="enabled_prompt" class="text" value="1" <?php if($c->Get("Enabled") == 1) echo "checked "; if($c->Get("PrimaryTheme") == 1) echo 'disabled ';?> onchange="align_enabled_value()">
+ <input type="hidden" id="enabled" name="enabled" class="text" <?php echo 'value="'.$c->Get("Enabled").'"'; ?>>
</td>
<td class="text"> </td>
</tr>
<tr <?php int_table_color(); ?>>
<td valign="top" class="text"><?php echo prompt_language("la_prompt_lang_cache_timeout"); ?></td>
<td>
<input type=text NAME="CacheTimeout" VALUE="<?php echo $c->Get("CacheTimeout"); ?>">
</td>
<td class="text"> </td>
</tr>
<tr <?php int_table_color(); ?>>
<td valign="top" class="text"><?php echo prompt_language("la_prompt_Primary"); ?></td>
<td>
- <input type="checkbox" name="primary" class="text" value="1" <?php if($c->Get("PrimaryTheme") == 1) echo "checked disabled"; ?>>
+ <input type="checkbox" name="primary_prompt" id="primary_prompt" class="text" value="1" <?php if($c->Get("PrimaryTheme") == 1) echo 'checked disabled'; ?> onchange="align_primary_value()">
+ <input type="hidden" name="primary" id="primary" <?php echo 'value="'.$c->Get("PrimaryTheme").'"'; ?>>
</td>
<td class="text"> </td>
<input type=hidden NAME="Action" VALUE="<?php echo $action; ?>">
<INPUT TYPE="hidden" NAME="ThemeId" VALUE="<?php echo $c->Get("ThemeId"); ?>">
<input TYPE="HIDDEN" NAME="DataType" VALUE="<?php echo $DataType; ?>">
<input type="hidden" name="ThemeEditStatus" VALUE="0">
</FORM>
</tr>
<FORM>
<TR <?php int_table_color(); ?> >
<td colspan="3">
</td>
</tr>
</FORM>
</TABLE>
<!-- CODE FOR VIEW MENU -->
<form method="post" action="user_groups.php?<?php echo $envar; ?>" name="viewmenu">
<input type="hidden" name="fieldname" value="">
<input type="hidden" name="varvalue" value="">
<input type="hidden" name="varvalue2" value="">
<input type="hidden" name="Action" value="">
</form>
<!-- END CODE-->
<?php int_footer(); ?>
Property changes on: trunk/admin/config/addtheme.php
___________________________________________________________________
Modified: cvs2svn:cvs-rev
## -1 +1 ##
-1.6
\ No newline at end of property
+1.7
\ No newline at end of property
Event Timeline
Log In to Comment