Update of /cvsroot/upcase-project/UpCase/admin
In directory sc8-pr-cvs1:/tmp/cvs-serv32004
Modified Files:
installer.php
Log Message:
premices of unistall operation
Index: installer.php
===================================================================
RCS file: /cvsroot/upcase-project/UpCase/admin/installer.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** installer.php 14 Nov 2002 11:30:20 -0000 1.3
--- installer.php 20 Nov 2002 14:29:46 -0000 1.4
***************
*** 45,48 ****
--- 45,52 ----
die("Not yet implemented");
}
+ else if (checkVar("uninstall", false))
+ {
+ $operation = "uninstall";
+ }
else
$operation = "view";
***************
*** 75,78 ****
--- 79,85 ----
$inst->saveMetaData($package);
$inst->install($package, $pkgRelUrl, $tblPrefix);
+ }
+ else if ($operation == "uninstall")
+ {
}
else if ($operation == "upgrade")
|