Presumably the one OptiLoader installed for him. I'm pretty sure that means 4.4 for the correct chip.
If you get three quick blinks when you hit reset, that should mean that the bootloader is installed and is basically working.
An 8L-8xx processor is supposed to be a "low power" version guaranteed to run 8MHz at a lower voltage than 5V. The general suspicion is that they'll also run 16MHz at the full 5V, but that's not guaranteed.
An 8A-xxx is the newest version of the atmega8. I believe that it's supposed to be identical, just using a newer semiconductor process. 8-xxx, 8L-xxx, and 8A-xxx all have the same "device signature", so they'll all be treated the same by optiloader and the Arduino IDE. There was never an 8P-xxx (but on the newer chips, like the 88P, the "P" functionality subsumes the old "L" functionality - yyyP-xx chip will run (are SPECIFIED to run) at lower voltages and power than the old non-L chips.
Note that for a mega8 or mega168 with optiboot (as installed by optiloader), you WILL need to modify boards.txt and add "mega8 with optiboot" and "mega168 with optiboot" board types. The existing 8/168 board types assume a different bootloader that runs at a different bit rate.
opti8.name=ATmega8 with optiboot
opti8.upload.protocol=stk500
opti8.upload.maximum_size=7680
opti8.upload.speed=115200
opti8.bootloader.low_fuses=0xbf
opti8.bootloader.high_fuses=0xdc
opti8.bootloader.path=optiboot
opti8.bootloader.file=optiboot_mega8.hex
opti8.bootloader.unlock_bits=0x3F
opti8.bootloader.lock_bits=0x0F
opti8.build.mcu=atmega8
opti8.build.f_cpu=16000000L
opti8.build.core=arduino
opti8.build.variant=standard
uno168.name=ATmega168 with optiboot
uno168.upload.protocol=arduino
uno168.upload.maximum_size=15872
uno168.upload.speed=115200
uno168.bootloader.low_fuses=0xff
uno168.bootloader.high_fuses=0xde
uno168.bootloader.extended_fuses=0x05
uno168.bootloader.path=optiboot
uno168.bootloader.file=optiboot_atmega168.hex
uno168.bootloader.unlock_bits=0x3F
uno168.bootloader.lock_bits=0x0F
uno168.build.mcu=atmega168
uno168.build.f_cpu=16000000L
uno168.build.core=arduino
uno168.build.variant=standard