ATutor

Learning Management Tools







Pages:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


addslashes vs addslashes


  • 2013-04-06 12:46:23

    addslashes vs addslashes

    Hello. I have ATutor 2.0 installed and I was noticing in the file_storage/index.php file that there were several instances of
    [php]$addslashes(......)[/php]

    shouldn't it be
    [php]addslashes(......)[/php]

    I've also seen this in edit_marks.php

    Thanks!

  • 2013-04-06 14:32:34

    Re: $addslashes vs. addslashes

    $addslashes() is an ATutor function for escaping input strings, see:

    include/lib/vital_funcs.inc.php

  • 2013-04-07 14:22:13

    Re: $addslashes vs. addslashes

    Got it.

    Thanks!