Update of /cvsroot/phpwebsite-comm/modules/rssfeeds/boost
In directory sc8-pr-cvs1:/tmp/cvs-serv4201
Modified Files:
uninstall.php
Log Message:
Updated Language Translation
Index: uninstall.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/rssfeeds/boost/uninstall.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** uninstall.php 19 Oct 2003 01:27:47 -0000 1.2
--- uninstall.php 19 Oct 2003 22:45:31 -0000 1.3
***************
*** 18,22 ****
/* report success */
! $content = "All RSS Feeds tables successfully removed.<br />";
$status = 1;
--- 18,22 ----
/* report success */
! $content = $_SESSION['translate']->it("All RSS Feeds tables successfully removed.") . "<br />";
$status = 1;
***************
*** 24,40 ****
if(isset($_SESSION["OBJ_help"])) {
CLS_help::uninstall_help("rssfeeds");
! $content .= "RSS Feeds removed from Help system.<br />";
}
/* uninstall search */
$GLOBALS['core']->sqlDelete("mod_search_register", "module", "rssfeeds");
! $content .= "RSS Feeds removed from Search system.<br />";
/* remove layout entries */
$GLOBALS['core']->sqlDelete("mod_layout_box", "mod_title", "rssfeeds");
! $content .= "RSS Feeds removed from Layout system.<br />";
} else
! $content .= "Unable to access the database.<br />";
?>
--- 24,40 ----
if(isset($_SESSION["OBJ_help"])) {
CLS_help::uninstall_help("rssfeeds");
! $content .= $_SESSION['translate']->it("RSS Feeds removed from Help system.") . "<br />";
}
/* uninstall search */
$GLOBALS['core']->sqlDelete("mod_search_register", "module", "rssfeeds");
! $content .= $_SESSION['translate']->it("RSS Feeds removed from Search system.") . "<br />";
/* remove layout entries */
$GLOBALS['core']->sqlDelete("mod_layout_box", "mod_title", "rssfeeds");
! $content .= $_SESSION['translate']->it("RSS Feeds removed from Layout system.") . "<br />";
} else
! $content .= $_SESSION['translate']->it("Unable to access the database.") . "<br />";
?>
|