Jump to content

Module:Navbar: Difference between revisions

105 bytes removed ,  11 years ago
If the documentation is accurate, this will use the namespace part of pageName first and fallback to Template if one isn't present, which is what we want.
m>Toohool
(return an html string instead of an htmlbuilder)
m>Dragons flight
(If the documentation is accurate, this will use the namespace part of pageName first and fallback to Template if one isn't present, which is what we want.)
Line 25: Line 25:
         title = mw.title.new( mw.ustring.sub(pageName, 2) );
         title = mw.title.new( mw.ustring.sub(pageName, 2) );
     else
     else
         title = mw.title.new( pageName );
         title = mw.title.new( pageName, 'Template' );
        if title.namespace == 0 then
            title = mw.title.makeTitle( 'Template', pageName );
        end   
     end       
     end       
   
   
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.