Milk

Cast (37)

  • Sean Penn

    Sean Penn

    Harvey Milk

  • Emile Hirsch

    Emile Hirsch

    Cleve Jones

  • Josh Brolin

    Josh Brolin

    Dan White

  • Diego Luna

    Diego Luna

    Jack Lira

  • James Franco

    James Franco

    Scott Smith

  • Alison Pill

    Alison Pill

    Anne Kronenberg

  • Victor Garber

    Victor Garber

    Mayor Moscone

  • Denis O'Hare

    Denis O'Hare

    John Briggs

  • Joseph Cross

    Joseph Cross

    Dick Pabich

  • Stephen Spinella

    Stephen Spinella

    Rick Stokes

  • Boyd Holbrook

    Boyd Holbrook

    Denton Smith

  • Lucas Grabeel

    Lucas Grabeel

    Danny Nicoletta

  • Jeff Koons

    Jeff Koons

    Art Agnos

  • Brent Corrigan

    Brent Corrigan

    Telephone Tree #3

  • Dave Franco

    Dave Franco

    Telephone Tree #5

  • Elias McConnell

    Elias McConnell

    Telephone Tree #8

  • Ashlee Temple

    Ashlee Temple

    Dianne Feinstein

  • Brandon Boyce

    Brandon Boyce

    Jim Rivaldo

  • Kelvin Yu

    Kelvin Yu

    Michael Wong

  • Cleve Jones

    Cleve Jones

    Don Amador

  • Dustin Lance Black

    Dustin Lance Black

    Castro Clone

  • Joshua Grannell

    Joshua Grannell

    Peaches Christ

  • Blake Cooper Griffin

    Blake Cooper Griffin

    Castro Man

  • Tim Halpin

    Tim Halpin

    SFPD Motor Cop

  • Richard Gross

    Richard Gross

    Riot Cop

  • Drew Kuhse

    Drew Kuhse

    Pizza Delivery Man

  • Catherine Cook

    Catherine Cook

    Opera Performer - Tosca

  • Joe Meyers

    Joe Meyers

    Opera Performer - Spoletta

  • Ryan Hellquist

    Ryan Hellquist

    Law Student (uncredited)

  • Anita Bryant

    Anita Bryant

    Self (archive footage)

  • Walter Cronkite

    Walter Cronkite

    Self (archive footage)

  • Ronald Reagan

    Ronald Reagan

    Self (archive footage)

  • Harvey Milk

    Harvey Milk

    Self (archive footage)

  • Dan White

    Dan White

    Self (archive footage)

  • Howard Rosenman

    Howard Rosenman

    David Goodstein

  • Lynn McRee

    Lynn McRee

    Moscone's Secretary

  • Jerry Brown

    Jerry Brown

    Self (archive footage)

Crew (71)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Milk

Cast (37)

  • Sean Penn

    Sean Penn

    Harvey Milk

  • Emile Hirsch

    Emile Hirsch

    Cleve Jones

  • Josh Brolin

    Josh Brolin

    Dan White

  • Diego Luna

    Diego Luna

    Jack Lira

  • James Franco

    James Franco

    Scott Smith

  • Alison Pill

    Alison Pill

    Anne Kronenberg

  • Victor Garber

    Victor Garber

    Mayor Moscone

  • Denis O'Hare

    Denis O'Hare

    John Briggs

  • Joseph Cross

    Joseph Cross

    Dick Pabich

  • Stephen Spinella

    Stephen Spinella

    Rick Stokes

  • Boyd Holbrook

    Boyd Holbrook

    Denton Smith

  • Lucas Grabeel

    Lucas Grabeel

    Danny Nicoletta

  • Jeff Koons

    Jeff Koons

    Art Agnos

  • Brent Corrigan

    Brent Corrigan

    Telephone Tree #3

  • Dave Franco

    Dave Franco

    Telephone Tree #5

  • Elias McConnell

    Elias McConnell

    Telephone Tree #8

  • Ashlee Temple

    Ashlee Temple

    Dianne Feinstein

  • Brandon Boyce

    Brandon Boyce

    Jim Rivaldo

  • Kelvin Yu

    Kelvin Yu

    Michael Wong

  • Cleve Jones

    Cleve Jones

    Don Amador

  • Dustin Lance Black

    Dustin Lance Black

    Castro Clone

  • Joshua Grannell

    Joshua Grannell

    Peaches Christ

  • Blake Cooper Griffin

    Blake Cooper Griffin

    Castro Man

  • Tim Halpin

    Tim Halpin

    SFPD Motor Cop

  • Richard Gross

    Richard Gross

    Riot Cop

  • Drew Kuhse

    Drew Kuhse

    Pizza Delivery Man

  • Catherine Cook

    Catherine Cook

    Opera Performer - Tosca

  • Joe Meyers

    Joe Meyers

    Opera Performer - Spoletta

  • Ryan Hellquist

    Ryan Hellquist

    Law Student (uncredited)

  • Anita Bryant

    Anita Bryant

    Self (archive footage)

  • Walter Cronkite

    Walter Cronkite

    Self (archive footage)

  • Ronald Reagan

    Ronald Reagan

    Self (archive footage)

  • Harvey Milk

    Harvey Milk

    Self (archive footage)

  • Dan White

    Dan White

    Self (archive footage)

  • Howard Rosenman

    Howard Rosenman

    David Goodstein

  • Lynn McRee

    Lynn McRee

    Moscone's Secretary

  • Jerry Brown

    Jerry Brown

    Self (archive footage)

Crew (71)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Milk

Cast (37)

  • Sean Penn

    Sean Penn

    Harvey Milk

  • Emile Hirsch

    Emile Hirsch

    Cleve Jones

  • Josh Brolin

    Josh Brolin

    Dan White

  • Diego Luna

    Diego Luna

    Jack Lira

  • James Franco

    James Franco

    Scott Smith

  • Alison Pill

    Alison Pill

    Anne Kronenberg

  • Victor Garber

    Victor Garber

    Mayor Moscone

  • Denis O'Hare

    Denis O'Hare

    John Briggs

  • Joseph Cross

    Joseph Cross

    Dick Pabich

  • Stephen Spinella

    Stephen Spinella

    Rick Stokes

  • Boyd Holbrook

    Boyd Holbrook

    Denton Smith

  • Lucas Grabeel

    Lucas Grabeel

    Danny Nicoletta

  • Jeff Koons

    Jeff Koons

    Art Agnos

  • Brent Corrigan

    Brent Corrigan

    Telephone Tree #3

  • Dave Franco

    Dave Franco

    Telephone Tree #5

  • Elias McConnell

    Elias McConnell

    Telephone Tree #8

  • Ashlee Temple

    Ashlee Temple

    Dianne Feinstein

  • Brandon Boyce

    Brandon Boyce

    Jim Rivaldo

  • Kelvin Yu

    Kelvin Yu

    Michael Wong

  • Cleve Jones

    Cleve Jones

    Don Amador

  • Dustin Lance Black

    Dustin Lance Black

    Castro Clone

  • Joshua Grannell

    Joshua Grannell

    Peaches Christ

  • Blake Cooper Griffin

    Blake Cooper Griffin

    Castro Man

  • Tim Halpin

    Tim Halpin

    SFPD Motor Cop

  • Richard Gross

    Richard Gross

    Riot Cop

  • Drew Kuhse

    Drew Kuhse

    Pizza Delivery Man

  • Catherine Cook

    Catherine Cook

    Opera Performer - Tosca

  • Joe Meyers

    Joe Meyers

    Opera Performer - Spoletta

  • Ryan Hellquist

    Ryan Hellquist

    Law Student (uncredited)

  • Anita Bryant

    Anita Bryant

    Self (archive footage)

  • Walter Cronkite

    Walter Cronkite

    Self (archive footage)

  • Ronald Reagan

    Ronald Reagan

    Self (archive footage)

  • Harvey Milk

    Harvey Milk

    Self (archive footage)

  • Dan White

    Dan White

    Self (archive footage)

  • Howard Rosenman

    Howard Rosenman

    David Goodstein

  • Lynn McRee

    Lynn McRee

    Moscone's Secretary

  • Jerry Brown

    Jerry Brown

    Self (archive footage)

Crew (71)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Milk

Cast (37)

  • Sean Penn

    Sean Penn

    Harvey Milk

  • Emile Hirsch

    Emile Hirsch

    Cleve Jones

  • Josh Brolin

    Josh Brolin

    Dan White

  • Diego Luna

    Diego Luna

    Jack Lira

  • James Franco

    James Franco

    Scott Smith

  • Alison Pill

    Alison Pill

    Anne Kronenberg

  • Victor Garber

    Victor Garber

    Mayor Moscone

  • Denis O'Hare

    Denis O'Hare

    John Briggs

  • Joseph Cross

    Joseph Cross

    Dick Pabich

  • Stephen Spinella

    Stephen Spinella

    Rick Stokes

  • Boyd Holbrook

    Boyd Holbrook

    Denton Smith

  • Lucas Grabeel

    Lucas Grabeel

    Danny Nicoletta

  • Jeff Koons

    Jeff Koons

    Art Agnos

  • Brent Corrigan

    Brent Corrigan

    Telephone Tree #3

  • Dave Franco

    Dave Franco

    Telephone Tree #5

  • Elias McConnell

    Elias McConnell

    Telephone Tree #8

  • Ashlee Temple

    Ashlee Temple

    Dianne Feinstein

  • Brandon Boyce

    Brandon Boyce

    Jim Rivaldo

  • Kelvin Yu

    Kelvin Yu

    Michael Wong

  • Cleve Jones

    Cleve Jones

    Don Amador

  • Dustin Lance Black

    Dustin Lance Black

    Castro Clone

  • Joshua Grannell

    Joshua Grannell

    Peaches Christ

  • Blake Cooper Griffin

    Blake Cooper Griffin

    Castro Man

  • Tim Halpin

    Tim Halpin

    SFPD Motor Cop

  • Richard Gross

    Richard Gross

    Riot Cop

  • Drew Kuhse

    Drew Kuhse

    Pizza Delivery Man

  • Catherine Cook

    Catherine Cook

    Opera Performer - Tosca

  • Joe Meyers

    Joe Meyers

    Opera Performer - Spoletta

  • Ryan Hellquist

    Ryan Hellquist

    Law Student (uncredited)

  • Anita Bryant

    Anita Bryant

    Self (archive footage)

  • Walter Cronkite

    Walter Cronkite

    Self (archive footage)

  • Ronald Reagan

    Ronald Reagan

    Self (archive footage)

  • Harvey Milk

    Harvey Milk

    Self (archive footage)

  • Dan White

    Dan White

    Self (archive footage)

  • Howard Rosenman

    Howard Rosenman

    David Goodstein

  • Lynn McRee

    Lynn McRee

    Moscone's Secretary

  • Jerry Brown

    Jerry Brown

    Self (archive footage)

Crew (71)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Milk

Cast (37)

  • Sean Penn

    Sean Penn

    Harvey Milk

  • Emile Hirsch

    Emile Hirsch

    Cleve Jones

  • Josh Brolin

    Josh Brolin

    Dan White

  • Diego Luna

    Diego Luna

    Jack Lira

  • James Franco

    James Franco

    Scott Smith

  • Alison Pill

    Alison Pill

    Anne Kronenberg

  • Victor Garber

    Victor Garber

    Mayor Moscone

  • Denis O'Hare

    Denis O'Hare

    John Briggs

  • Joseph Cross

    Joseph Cross

    Dick Pabich

  • Stephen Spinella

    Stephen Spinella

    Rick Stokes

  • Boyd Holbrook

    Boyd Holbrook

    Denton Smith

  • Lucas Grabeel

    Lucas Grabeel

    Danny Nicoletta

  • Jeff Koons

    Jeff Koons

    Art Agnos

  • Brent Corrigan

    Brent Corrigan

    Telephone Tree #3

  • Dave Franco

    Dave Franco

    Telephone Tree #5

  • Elias McConnell

    Elias McConnell

    Telephone Tree #8

  • Ashlee Temple

    Ashlee Temple

    Dianne Feinstein

  • Brandon Boyce

    Brandon Boyce

    Jim Rivaldo

  • Kelvin Yu

    Kelvin Yu

    Michael Wong

  • Cleve Jones

    Cleve Jones

    Don Amador

  • Dustin Lance Black

    Dustin Lance Black

    Castro Clone

  • Joshua Grannell

    Joshua Grannell

    Peaches Christ

  • Blake Cooper Griffin

    Blake Cooper Griffin

    Castro Man

  • Tim Halpin

    Tim Halpin

    SFPD Motor Cop

  • Richard Gross

    Richard Gross

    Riot Cop

  • Drew Kuhse

    Drew Kuhse

    Pizza Delivery Man

  • Catherine Cook

    Catherine Cook

    Opera Performer - Tosca

  • Joe Meyers

    Joe Meyers

    Opera Performer - Spoletta

  • Ryan Hellquist

    Ryan Hellquist

    Law Student (uncredited)

  • Anita Bryant

    Anita Bryant

    Self (archive footage)

  • Walter Cronkite

    Walter Cronkite

    Self (archive footage)

  • Ronald Reagan

    Ronald Reagan

    Self (archive footage)

  • Harvey Milk

    Harvey Milk

    Self (archive footage)

  • Dan White

    Dan White

    Self (archive footage)

  • Howard Rosenman

    Howard Rosenman

    David Goodstein

  • Lynn McRee

    Lynn McRee

    Moscone's Secretary

  • Jerry Brown

    Jerry Brown

    Self (archive footage)

Crew (71)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Milk

Cast (37)

  • Sean Penn

    Sean Penn

    Harvey Milk

  • Emile Hirsch

    Emile Hirsch

    Cleve Jones

  • Josh Brolin

    Josh Brolin

    Dan White

  • Diego Luna

    Diego Luna

    Jack Lira

  • James Franco

    James Franco

    Scott Smith

  • Alison Pill

    Alison Pill

    Anne Kronenberg

  • Victor Garber

    Victor Garber

    Mayor Moscone

  • Denis O'Hare

    Denis O'Hare

    John Briggs

  • Joseph Cross

    Joseph Cross

    Dick Pabich

  • Stephen Spinella

    Stephen Spinella

    Rick Stokes

  • Boyd Holbrook

    Boyd Holbrook

    Denton Smith

  • Lucas Grabeel

    Lucas Grabeel

    Danny Nicoletta

  • Jeff Koons

    Jeff Koons

    Art Agnos

  • Brent Corrigan

    Brent Corrigan

    Telephone Tree #3

  • Dave Franco

    Dave Franco

    Telephone Tree #5

  • Elias McConnell

    Elias McConnell

    Telephone Tree #8

  • Ashlee Temple

    Ashlee Temple

    Dianne Feinstein

  • Brandon Boyce

    Brandon Boyce

    Jim Rivaldo

  • Kelvin Yu

    Kelvin Yu

    Michael Wong

  • Cleve Jones

    Cleve Jones

    Don Amador

  • Dustin Lance Black

    Dustin Lance Black

    Castro Clone

  • Joshua Grannell

    Joshua Grannell

    Peaches Christ

  • Blake Cooper Griffin

    Blake Cooper Griffin

    Castro Man

  • Tim Halpin

    Tim Halpin

    SFPD Motor Cop

  • Richard Gross

    Richard Gross

    Riot Cop

  • Drew Kuhse

    Drew Kuhse

    Pizza Delivery Man

  • Catherine Cook

    Catherine Cook

    Opera Performer - Tosca

  • Joe Meyers

    Joe Meyers

    Opera Performer - Spoletta

  • Ryan Hellquist

    Ryan Hellquist

    Law Student (uncredited)

  • Anita Bryant

    Anita Bryant

    Self (archive footage)

  • Walter Cronkite

    Walter Cronkite

    Self (archive footage)

  • Ronald Reagan

    Ronald Reagan

    Self (archive footage)

  • Harvey Milk

    Harvey Milk

    Self (archive footage)

  • Dan White

    Dan White

    Self (archive footage)

  • Howard Rosenman

    Howard Rosenman

    David Goodstein

  • Lynn McRee

    Lynn McRee

    Moscone's Secretary

  • Jerry Brown

    Jerry Brown

    Self (archive footage)

Crew (71)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Milk

Cast (37)

  • Sean Penn

    Sean Penn

    Harvey Milk

  • Emile Hirsch

    Emile Hirsch

    Cleve Jones

  • Josh Brolin

    Josh Brolin

    Dan White

  • Diego Luna

    Diego Luna

    Jack Lira

  • James Franco

    James Franco

    Scott Smith

  • Alison Pill

    Alison Pill

    Anne Kronenberg

  • Victor Garber

    Victor Garber

    Mayor Moscone

  • Denis O'Hare

    Denis O'Hare

    John Briggs

  • Joseph Cross

    Joseph Cross

    Dick Pabich

  • Stephen Spinella

    Stephen Spinella

    Rick Stokes

  • Boyd Holbrook

    Boyd Holbrook

    Denton Smith

  • Lucas Grabeel

    Lucas Grabeel

    Danny Nicoletta

  • Jeff Koons

    Jeff Koons

    Art Agnos

  • Brent Corrigan

    Brent Corrigan

    Telephone Tree #3

  • Dave Franco

    Dave Franco

    Telephone Tree #5

  • Elias McConnell

    Elias McConnell

    Telephone Tree #8

  • Ashlee Temple

    Ashlee Temple

    Dianne Feinstein

  • Brandon Boyce

    Brandon Boyce

    Jim Rivaldo

  • Kelvin Yu

    Kelvin Yu

    Michael Wong

  • Cleve Jones

    Cleve Jones

    Don Amador

  • Dustin Lance Black

    Dustin Lance Black

    Castro Clone

  • Joshua Grannell

    Joshua Grannell

    Peaches Christ

  • Blake Cooper Griffin

    Blake Cooper Griffin

    Castro Man

  • Tim Halpin

    Tim Halpin

    SFPD Motor Cop

  • Richard Gross

    Richard Gross

    Riot Cop

  • Drew Kuhse

    Drew Kuhse

    Pizza Delivery Man

  • Catherine Cook

    Catherine Cook

    Opera Performer - Tosca

  • Joe Meyers

    Joe Meyers

    Opera Performer - Spoletta

  • Ryan Hellquist

    Ryan Hellquist

    Law Student (uncredited)

  • Anita Bryant

    Anita Bryant

    Self (archive footage)

  • Walter Cronkite

    Walter Cronkite

    Self (archive footage)

  • Ronald Reagan

    Ronald Reagan

    Self (archive footage)

  • Harvey Milk

    Harvey Milk

    Self (archive footage)

  • Dan White

    Dan White

    Self (archive footage)

  • Howard Rosenman

    Howard Rosenman

    David Goodstein

  • Lynn McRee

    Lynn McRee

    Moscone's Secretary

  • Jerry Brown

    Jerry Brown

    Self (archive footage)

Crew (71)