Index: branches/RL2/extensions/Gadgets/backend/GadgetPageList.php |
— | — | @@ -36,7 +36,7 @@ |
37 | 37 | $dbw->insert( 'gadgetpagelist', array( |
38 | 38 | 'gpl_extension' => self::determineExtension( $title ), |
39 | 39 | 'gpl_namespace' => $title->getNamespace(), |
40 | | - 'gpl_title' => $title->getPrefixedDBKey() |
| 40 | + 'gpl_title' => $title->getDBKey() |
41 | 41 | ), __METHOD__, array( 'IGNORE' ) |
42 | 42 | ); |
43 | 43 | } |
— | — | @@ -49,7 +49,7 @@ |
50 | 50 | $dbw = wfGetDB( DB_MASTER ); |
51 | 51 | $dbw->delete( 'gadgetpagelist', array( |
52 | 52 | 'gpl_namespace' => $title->getNamespace(), |
53 | | - 'gpl_title' => $title->getPrefixedDBKey() |
| 53 | + 'gpl_title' => $title->getDBKey() |
54 | 54 | ), __METHOD__ |
55 | 55 | ); |
56 | 56 | } |