Fix footers - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit abdba490445e784e7f3d0101abf47bf1183d23bd
 (DIR) parent cf46e5b6167ba78a1e91bb20c2c6805e65167374
 (HTM) Author: HD Moore <hd_moore@rapid7.com>
       Date:   Tue, 26 Aug 2014 12:00:27 -0500
       
       Fix footers
       
       Diffstat:
         M app/views/layouts/application.html… |      11 ++---------
         M app/views/layouts/login.html.erb    |       9 ++-------
         M app/views/shared/_footer.html.erb   |       2 +-
       
       3 files changed, 5 insertions(+), 17 deletions(-)
       ---
 (DIR) diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
       @@ -15,14 +15,7 @@
        <%= yield :view_javascript %>
        <%= stylesheet_link_tag "application", :media => "all" %>
        <%= yield :view_stylesheets %>
       -
       -
       -    <%= favicon_link_tag '/assets/apple-touch-icon-144x144-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '144x144' %>
       -    <%= favicon_link_tag '/assets/apple-touch-icon-114x114-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '114x114' %>
       -    <%= favicon_link_tag '/assets/apple-touch-icon-72x72-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '72x72' %>
       -    <%= favicon_link_tag '/assets/apple-touch-icon-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png' %>
       -    <%= favicon_link_tag '/assets/favicon.ico', :rel => 'shortcut icon' %>
       -
       +  <%= favicon_link_tag '/assets/favicon.ico', :rel => 'shortcut icon' %>
                <%= javascript_tag do %>
                        $(document).ready(function() {
        
       @@ -92,7 +85,7 @@
                  </div>
        
                  <footer class="footer">
       -                  <p>WarVOX v<%=WarVOX::VERSION %> &copy; Rapid7, Inc. 2009-2013</p>
       +                  <p>WarVOX v<%=WarVOX::VERSION %> &copy; 2009-<%= Time.now.year%> Rapid7 LLC</p>
                  </footer>
        
                </div>
 (DIR) diff --git a/app/views/layouts/login.html.erb b/app/views/layouts/login.html.erb
       @@ -13,12 +13,7 @@
        
            <%= javascript_include_tag "application" %>
            <%= stylesheet_link_tag "application", :media => "all" %>
       -
       -    <%= favicon_link_tag 'images/apple-touch-icon-144x144-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '144x144' %>
       -    <%= favicon_link_tag 'images/apple-touch-icon-114x114-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '114x114' %>
       -    <%= favicon_link_tag 'images/apple-touch-icon-72x72-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '72x72' %>
       -    <%= favicon_link_tag 'images/apple-touch-icon-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png' %>
       -    <%= favicon_link_tag 'images/favicon.ico', :rel => 'shortcut icon' %>
       +    <%= favicon_link_tag '/assets/favicon.ico', :rel => 'shortcut icon' %>
        
                <%= javascript_tag do %>
                        $(document).ready(function() {
       @@ -34,7 +29,7 @@
          </div>
        
            <footer class="footer">
       -      <p>WarVOX v<%=WarVOX::VERSION %> &copy; Rapid7, Inc. 2009-2013</p>
       +      <p>WarVOX v<%=WarVOX::VERSION %> &copy; 2009-<%= Time.now.year%> Rapid7 LLC</p>
            </footer>
        
          </body>
 (DIR) diff --git a/app/views/shared/_footer.html.erb b/app/views/shared/_footer.html.erb
       @@ -1,5 +1,5 @@
        <div id="footer">
                <div id='copyright'>
       -          Copyright &copy;2009-2013 Rapid7, Inc.<br/>
       +          WarVOX v<%=WarVOX::VERSION %> &copy;2009-<%= Time.now.year%> Rapid7 LLC<br/>
                </div>
        </div>