diff options
author | Heshan Wanigasooriya <heshanmw@gmail.com> | 2009-07-11 08:36:09 +0000 |
---|---|---|
committer | Heshan Wanigasooriya <heshanmw@gmail.com> | 2009-07-11 08:36:09 +0000 |
commit | eda5f885612b1e83781f23f519acc66a80375118 (patch) | |
tree | 2e68f43489384d83eb0c8b4cde82582c6ea3f861 | |
parent | 2b83dc71b2fdd6a331d2cf418a9a6cca765275ae (diff) | |
download | video-eda5f885612b1e83781f23f519acc66a80375118.tar.gz video-eda5f885612b1e83781f23f519acc66a80375118.tar.bz2 |
removing $may_cache
-rw-r--r-- | types/video_google/video_google.module | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/types/video_google/video_google.module b/types/video_google/video_google.module index 3245ba7..e1afa56 100644 --- a/types/video_google/video_google.module +++ b/types/video_google/video_google.module @@ -15,15 +15,12 @@ * Implementation of hook_menu */ function video_google_menu() { - $items = array(); - $maycache=true; - if($maycache) { + $items = array(); $items['node/add/video/google'] = array( 'title' => 'Google', 'access arguments' => array('create video') ); - } - return $items; + return $items; } |