Merge branch 'master' of github.com:webnotes/erpnext
diff --git a/home/page/latest_updates/latest_updates.js b/home/page/latest_updates/latest_updates.js
index 26ffe2f..d1561e0 100644
--- a/home/page/latest_updates/latest_updates.js
+++ b/home/page/latest_updates/latest_updates.js
@@ -1,4 +1,10 @@
erpnext.updates = [
+ ["28st January, 2013", [
+ "List Views are now configurable: To set list views, check 'In List View' in Setup > Customize Form View in the fields table.",
+ ]],
+ ["24st January, 2013", [
+ "Integrated Languages in Profile and via browser settings. To set your language, click on your name in the toolbar then 'My Settings...'",
+ ]],
["21st January, 2013", [
"Number Formatting: Added Number Format to Global Defaults & Currency",
]],
diff --git a/patches/january_2013/tabsessions_to_myisam.py b/patches/january_2013/tabsessions_to_myisam.py
new file mode 100644
index 0000000..7bbc351
--- /dev/null
+++ b/patches/january_2013/tabsessions_to_myisam.py
@@ -0,0 +1,3 @@
+def execute():
+ import webnotes
+ webnotes.conn.sql("""alter table tabSessions engine=MyISAM""")
\ No newline at end of file
diff --git a/patches/patch_list.py b/patches/patch_list.py
index ef17542..b87d9a4 100644
--- a/patches/patch_list.py
+++ b/patches/patch_list.py
@@ -161,4 +161,5 @@
"patches.january_2013.reload_print_format",
"patches.january_2013.rebuild_tree",
"execute:webnotes.reload_doc('core','doctype','docfield') #2013-01-28",
+ "patches.january_2013.tabsessions_to_myisam.py",
]
\ No newline at end of file