nitcalicut / Paathshaala

Social Content Repository for NITC
www.paathshaala.nitc.ac.in
GNU General Public License v3.0
12 stars 7 forks source link

video.json.php Returning wrong information #25

Closed jaseemabid closed 12 years ago

jaseemabid commented 12 years ago

Accessing '/json/video.json.php?video=...' with an invalid video id is returning wrong info. Eg :

For cid 1900, It returns

{
    cid: "1900",
    title: null,
    desc: null,
    tags: [ ],
    timestamp: null,
    viewcount: null,
    status: null,
    path: "//1900.ogv",
    poster: "/thumbs/1900.png",
    likestatus: 0,
    sid: null,
    sname: null,
    order: null,
    uid: null,
    uname: null
}

It should have been ideally null in every field.

nxvipin commented 12 years ago

Fixed. All fields in JSON will be NULL if the content is not present. Commit: fe334babcd

jaseemabid commented 12 years ago

Works fine :)