Browse CVS Repository
Diff of /xoonips-library/xnpbulletin/install_funcs.php
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 127 |
// cannot unregister filetype |
// cannot unregister filetype |
| 128 |
return false; |
return false; |
| 129 |
} |
} |
|
$table = $xoopsDB->prefix('xnpbulletin_item_detail_child_author'); |
|
|
$sql = "DROP TABLE $table"; |
|
|
if ( $xoopsDB->query($sql) == FALSE ){ |
|
|
// cannot unregister child_author |
|
|
return false; |
|
|
} |
|
|
$table = $xoopsDB->prefix('xnpbulletin_item_detail_child_keywords'); |
|
|
$sql = "DROP TABLE $table"; |
|
|
if ( $xoopsDB->query($sql) == FALSE ){ |
|
|
// cannot unregister child_keywords |
|
|
return false; |
|
|
} |
|
|
$table = $xoopsDB->prefix('xnpbulletin_item_detail_child_free_keywords'); |
|
|
$sql = "DROP TABLE $table"; |
|
|
if ( $xoopsDB->query($sql) == FALSE ){ |
|
|
// cannot unregister child_free_keywords |
|
|
return false; |
|
|
} |
|
| 130 |
return true; |
return true; |
| 131 |
} |
} |
| 132 |
|
|
|
|
Legend:
| Removed from v.1.5 |
|
| changed lines |
| |
Added in v.1.6 |
|
|
|