Features:
System Requirements:
|
Submitter: webmaster
Released: 2004/04/28
Version: 2.0
Release Status:
Downloads: 3391
File Size: 27.32 Kb
Rating:
![]() Reviews: ![]() Mirrors Available: 0 Download Times:
Modem(56k) : 4s
ISDN(64k) : 4s DSL(768k) : 0.32s LAN(10M) : 0.02s |
||||
Price: Free |
Platform: 2.2.x |
License: Apache License (v. 1.0) |
Limitations: None
|
|||||
DMS (Document Management System)
(2007/09/18)
|
Evennews Mailer
(2006/06/04)
|
Chess
(2004/08/07)
|
Avantgo 2.14
(2004/04/28)
|
Cjay Content 3
(2004/04/28)
|
Direct Friends
(2004/04/28)
|
Enterprise-X
(2004/04/28)
|
Error Handler
(2004/04/28)
|
Link to us
(2004/04/28)
|
Metacat 1.0
(2004/04/28)
|
MSN Messenger
(2004/04/28)
|
EasyWeb
(2004/04/28)
|
Supports
(2004/04/28)
|
wsProject
(2004/04/28)
|
Addresses module
(2004/04/28)
|
Agnitio Virus Info
(2004/04/28)
|
Altern8news
(2004/04/28)
|
Analog clock
(2004/04/28)
|
DB Backup & Restore 3.0
(2004/04/28)
|
Blockies 0.5 - Xoops Block Enhancements
(2004/04/28)
|
Author | Thread |
---|
Hi
Here is a correction of an error I discover in pricelist module
There is an error in the file pricelist/admin/index.php about line 210 which impede modification of a category. Here is the correction. Substitute set by ,
That's all!
Before
function DbEditDeleteCat($functz, $ok, $caid, $catname, $parent) {
global $xoopsDB;
if ($functz==0) {
$xoopsDB->query("update ".$xoopsDB->prefix("pricelist_categories")." set catname='$catname' set parent='$parent' where caid=$caid" );
redirect_header("index.php",1,_UPDATED);
}
if ($functz==1) {
title(""._ADMINADSAECAT."");
OpenTable();
if ($ok == 0) {
echo "
."
[ "._YES." ] [ "._NO." ]
}
CloseTable();
}
}
After
function DbEditDeleteCat($functz, $ok, $caid, $catname, $parent) {
global $xoopsDB;
if ($functz==0) {
$xoopsDB->query("update ".$xoopsDB->prefix("pricelist_categories")." set catname='$catname', parent='$parent' where caid=$caid" );
redirect_header("index.php",1,_UPDATED);
}
if ($functz==1) {
title(""._ADMINADSAECAT."");
OpenTable();
if ($ok == 0) {
echo "
."
[ "._YES." ] [ "._NO." ]
}
CloseTable();
}
}