aboutsummaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/versions/select-product.html.tmpl
Commit message (Expand)AuthorAgeFilesLines
* Bug 680131: Replace the MPL 1.1 license by the MPL 2.0 one in all files, and ...Frédéric Buclin2012-01-111-19/+5
* Bug 696256: global/variables.none.tmpl should be PRE_PROCESS'edFrédéric Buclin2011-10-231-2/+0
* Bug 392186: Remove version headers from all templates - Patch by GavinS <bugz...lpsolit%gmail.com2007-08-201-1/+0
* Bug 365514 admin/versions/select-product has useless <p>timeless%mozdev.org2007-01-081-2/+0
* Bug 307604: "Redisplay table with bug counts" should also be available from e...lpsolit%gmail.com2005-09-281-10/+21
* Patch for bug 190226: templatize editversions.cgi; patch by GavinS <bugzilla@...jocuri%softhome.net2005-01-161-0/+62
id='n9' href='#n9'>9 10 11 12 13 14 15 16 17 18 19
package c; # $Id$

use vars qw($AUTOLOAD);

use c::stuff;
use MDK::Common;

sub AUTOLOAD() {
    $AUTOLOAD =~ /::(.*)/ or return;
    my @l = eval { &{$c::stuff::{$1}} };
    if (my $err = $@) {
	$err =~ /Undefined subroutine &main::/ ?
	  die("can not find function $AUTOLOAD\n" . backtrace()) :
	  die($err);	
    }
    wantarray() ? @l : $l[0];
}

1;