This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lojjik@doh:~/VANILLA_UPGRADE/vanilla/upgrade (master)$ ./upgrade | |
* Loading configuration | |
* Dropping tables from new database ... | |
- Dropping GDN_Category | |
- Dropping GDN_Comment | |
- Dropping GDN_Discussion | |
- Dropping GDN_User | |
- Dropping GDN_UserAuthentication | |
* Getting a dump of old database vanilla ... | |
* Importing old tables into new database ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Grants for root@localhost | | |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | |
| GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, SHUTDOWN, PROCESS, FILE, REFERENCES, INDEX, ALTER, SHOW DATABASES, SUPER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, REPLICATION SLAVE, REPLICATION CLIENT, CREATE VIE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -wur vanilla-2.0.14-plain/applications/conversations/settings/class.hooks.php vanilla-2.0.14-ours/applications/conversations/settings/class.hooks.php | |
--- vanilla-2.0.14-plain/applications/conversations/settings/class.hooks.php 2010-11-09 13:18:16.000000000 -0800 | |
+++ vanilla-2.0.14-ours/applications/conversations/settings/class.hooks.php 2015-06-08 08:24:34.000000000 -0700 | |
@@ -47,7 +47,7 @@ | |
$Session = Gdn::Session(); | |
if ($Session->IsValid() && $Session->UserID != $Sender->User->UserID) { | |
$SideMenu = $Sender->EventArguments['SideMenu']; | |
- $SideMenu->AddLink('Options', sprintf(T('Send %s a Message'), $Sender->User->Name), '/messages/add/'.$Sender->User->Name); | |
+ #$SideMenu->AddLink('Options', sprintf(T('Send %s a Message'), $Sender->User->Name), '/messages/add/'.$Sender->User->Name); | |
$Sender->EventArguments['SideMenu'] = $SideMenu; |