~quam-plures-core/quam-plures/install_bug_fix

« back to all changes in this revision

Viewing changes to qp_inc/_core/_template.funcs.php

  • Committer: EdB
  • Author(s): Lee Turner
  • Date: 2012-08-02 14:55:44 UTC
  • mfrom: (7645.1.1 no_generator)
  • Revision ID: 1912webworks@gmail.com-20120802145544-measw8kgjzs62lju
Basically removes the meta generator output from core.

Show diffs side-by-side

added added

removed removed

Lines of Context:
444
444
 
445
445
/**
446
446
 * T-Tag: Outputs a <meta name="generator"> tag which contains information about this application.
 
447
 *
 
448
 * @deprecated No longer outputs meta generator.  Left for backwards compatibility
447
449
 */
448
450
function meta_generator_tag()
449
451
{
450
 
        global $app_name, $app_version;
451
 
 
452
 
        echo '<meta name="generator" content="', $app_name, ' ', $app_version, '" />', "\n";
453
452
}
454
453
 
455
454