aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/title_helper.rb~
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/title_helper.rb~')
-rw-r--r--app/helpers/title_helper.rb~11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/helpers/title_helper.rb~ b/app/helpers/title_helper.rb~
new file mode 100644
index 000000000..aba7cc490
--- /dev/null
+++ b/app/helpers/title_helper.rb~
@@ -0,0 +1,11 @@
+module TitleHelper
+
+ def title(title = nil)
+ if title
+ @title = title
+ else
+ @title
+ end
+ end
+
+end