]> git.sur5r.net Git - bacula/bacula/commitdiff
bacula-web: Renammed Chttp class functions call to ChttpRequest class
authorDavide Franco <bacula-dev@dflc.ch>
Wed, 20 Jul 2011 17:13:42 +0000 (19:13 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:26 +0000 (14:49 +0200)
gui/bacula-web/backupjob-report.php
gui/bacula-web/includes/bweb.inc.php
gui/bacula-web/jobs.php

index 635e622dcb43cbf1fc066e4a51597c1c39446bef..996dde55b4780d39b2ddfe865f9c030bd03b4f92 100644 (file)
@@ -30,8 +30,8 @@
        // ===============================================================
        // Get Backup Job name from GET or POST
        // ===============================================================
-       $http_post = CHttp::getRequestVars( $_POST );
-       $http_get  = CHttp::getRequestVars( $_GET );
+       $http_post = CHttpRequest::getRequestVars( $_POST );
+       $http_get  = CHttpRequest::getRequestVars( $_GET );
        
        if( isset( $http_post['backupjob_name'] ) )
                $backupjob_name = $http_post['backupjob_name'];
index ea45ce3d336fd83dd758a43aa07a92501902df29..2cbca62105d0dfe1644890bc6453ac55557d149c 100644 (file)
@@ -41,7 +41,7 @@ class Bweb
                $this->init_gettext();
                
                // Check catalog id
-               $http_post = CHttp::getRequestVars($_POST);
+               $http_post = CHttpRequest::getRequestVars($_POST);
                if( isset( $http_post['catalog_id'] ) ) {
                        $this->catalog_current_id = $http_post['catalog_id'];
                        $_SESSION['catalog_id'] = $this->catalog_current_id;
index 30cc2e915ff775f9c0f1b4e65b50609a00d57a4a..6cd46dd290778ec1f57c2f5d520d33dc0e996671 100644 (file)
@@ -47,7 +47,7 @@
   $query .= "LEFT JOIN Pool ON Job.PoolId=Pool.PoolId ";
   $query .= "LEFT JOIN Status ON Job.JobStatus = Status.JobStatus ";
  
-  $posts = CHttp::getRequestVars( $_POST );
+  $posts = CHttpRequest::getRequestVars( $_POST );
    
   if( $posts != false ) {
        switch( $posts['status'] )