head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2000.08.28.02.28.22;	author chuck;	state dead;
branches;
next	1.1;

1.1
date	99.07.20.07.36.28;	author jon;	state Exp;
branches;
next	;


desc
@@


1.2
log
@starting to modernize babel - nothing autogenerated, standard
directory/library names, etc.
@
text
@function make_lock_button (&$request_ref) {
  $but = 'Locked: ';
  
  if ($request_ref->post['locked']) {
    $but .= '<input type="radio" name="locked" value="1" checked> yes ';
    $but .= '<input type="radio" name="locked" value="0"> no' . "\n";
  } else {
    $but .= '<input type="radio" name="locked" value="1"> yes ';
    $but .= '<input type="radio" name="locked" value="0" checked> no' . "\n";
  }
  
  $but .= "<br>\n";

  return $but;
}
@


1.1
log
@
jon: alrighty, babel.php3.in is now broken down into seperate
     function files.  they're jusy dying to be combined into
     objects and seperate source files.
@
text
@@

