Show
Ignore:
Timestamp:
12/02/07 00:53:34 (6 years ago)
Author:
p_lindheimer
Message:

add language module that allows language change in the call flow and adds language attribute to extensions/users

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.4/languages/uninstall.php

    r4583 r5328  
    22 
    33global $db; 
    4 global $amp_conf; 
    54 
    6 $miscapps_arr = miscapps_list(); 
    7 foreach ($miscapps_arr as $item) { 
    8   echo "removing ".$item['description'].".."; 
    9   miscapps_delete($item['miscapps_id']); 
    10   echo "done<br>\n"; 
    11 
    12  
    13 echo "dropping table miscapps.."; 
    14 sql("DROP TABLE IF EXISTS `miscapps`"); 
     5echo "dropping table languages.."; 
     6sql("DROP TABLE IF EXISTS `languages`"); 
    157echo "done<br>\n"; 
    168